JUALOP60
Technical User
- May 29, 2010
- 16
Hi,
i have this code:
If Range("A" & LRow).Value = LINDEX Then
LFound = True
LCompany = Range("B" & LRow).Value
LAddress = Range("C" & LRow).Value
LCity = Range("D" & LRow).Value
LProvince = Range("E" & LRow).Value
LCode = Range("F" & LRow).Value
Sheets("ChequeReq").Select
Range("B13").Value = LCompany
Range("B14").Value = LAddress
Range("B15").Value = LCity
I want the values of "D","E","F" Cells, which are City, Province and Postal Code on Cell "B15",
Like: Vancouver,BC VZ6 1R7
how can I?
Thank you
i have this code:
If Range("A" & LRow).Value = LINDEX Then
LFound = True
LCompany = Range("B" & LRow).Value
LAddress = Range("C" & LRow).Value
LCity = Range("D" & LRow).Value
LProvince = Range("E" & LRow).Value
LCode = Range("F" & LRow).Value
Sheets("ChequeReq").Select
Range("B13").Value = LCompany
Range("B14").Value = LAddress
Range("B15").Value = LCity
I want the values of "D","E","F" Cells, which are City, Province and Postal Code on Cell "B15",
Like: Vancouver,BC VZ6 1R7
how can I?
Thank you