ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Vlookup code needed (https://www.excelbanter.com/excel-programming/396190-vlookup-code-needed.html)

LC ANG

Vlookup code needed
 
Hi, I need your expert advise on my problem below.

I need to look up one column say 'H' with wording "Cas" and if true column
'S' will populate "Please pay up". I know I can use "ifvlookup" formula to
perform this task but colum S itself has comments which I do not want to
overide by the formula code.

Would appreciate your advise on this.

Example

Column H Column S
Cas Please pay up
TT


Tom Ogilvy

Vlookup code needed
 
Sub aBC()
Dim rng as Range, cell as Range
with worksheets("sheet1")
set rng =.Range("H1",.cells(rows.count,"H").End(xlup))
End with

for each cell in rng
if lcase(cell.Value) = "cas" then
cells(cell.row,"S").Value = "Please Pay Up"
end if
Next
End sub

--
Regards,
Tom Ogilvy


"LC ANG" wrote:

Hi, I need your expert advise on my problem below.

I need to look up one column say 'H' with wording "Cas" and if true column
'S' will populate "Please pay up". I know I can use "ifvlookup" formula to
perform this task but colum S itself has comments which I do not want to
overide by the formula code.

Would appreciate your advise on this.

Example

Column H Column S
Cas Please pay up
TT



All times are GMT +1. The time now is 02:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com