Jun 13, 2008 #1 egodette Technical User Jun 12, 2002 222 US How do I properly code this for use in Excel? IF Left(Trim(Range("D" & Trim(Str(irow)))), 3) exists IN (AUD,BEF,ECU,EUR,GBP,NZD,PKR) THEN
How do I properly code this for use in Excel? IF Left(Trim(Range("D" & Trim(Str(irow)))), 3) exists IN (AUD,BEF,ECU,EUR,GBP,NZD,PKR) THEN
Jun 13, 2008 #2 S SkipVought Programmer Dec 4, 2001 47,492 US Hi, Code: Select Case Left(Cells(irow, "D").Value, 3) Case "AUD","BEF","ECU","EUR","GBP","NZD","PKR" 'now what happens??? End Select Skip, Just traded in my old subtlety... for a NUANCE! Upvote 0 Downvote
Hi, Code: Select Case Left(Cells(irow, "D").Value, 3) Case "AUD","BEF","ECU","EUR","GBP","NZD","PKR" 'now what happens??? End Select Skip, Just traded in my old subtlety... for a NUANCE!