Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a report that contains a list of account codes in column A, and I'm
trying to build a userform, that can give performance figures by department / company / section. So what I need to do, is have the userform rename the account codes, by adding a suffix to define which department they belong to. What I have so far is something along the lines of: If Left(Cells(i, 1), 6) = "AAL060" Then n = 1 If Left(Cells(i, 1), 6) = "AAL064" Then n = 1 But the list of account codes is about 50 long, and I don't want 50 lines of if statements if I can avoid it. Is there some way I can have : If Left(Cells(i, 1), 6) = "AAL060"&"AAL064"&"PFF800" Then n = 1 So its only 1 check against a list? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Complex conditional summing - array COUNT works, array SUM gives#VALUE | Excel Worksheet Functions | |||
Prevent cell/array references from changing when altering/moving thecell/array | Excel Discussion (Misc queries) | |||
meaning of : IF(Switch; Average(array A, array B); array A) | Excel Worksheet Functions | |||
Array problem: Key words-Variant Array, single-element, type mismatch error | Excel Programming | |||
Array problem: Key words-Variant Array, single-element, type mismatch error | Excel Programming |