Hi All,
I'm trying to write a formula(s) which split out some customer coding information so it can be cleanly moved - the idea is to combine all these into one formula so all information in one column (any suggestions on that too greatly appreciated)
So the rules are;
Many thanks in advance!
Dan
I'm trying to write a formula(s) which split out some customer coding information so it can be cleanly moved - the idea is to combine all these into one formula so all information in one column (any suggestions on that too greatly appreciated)
So the rules are;
- IF the customer number 5th letter is an A - it is a 'Statement' level code
Successful formula I used - IF(MID(CELL,5,1)="A","STATEMENT","")
- IF the customer number has 6 characters or more, it is a 'Delivery' level code
Successful formula I used - IF(LEN(CELL)=>6,"DELIVERY","")
- IF the customer number 5th letter is anything but A - it is an 'Invoice' level code - but I don't want it to consider text strings longer than 5 characters (as they Delivery level codes)
Unsuccessful attempts - I've got as far as suggesting - IF(MID(CELL,5,1)<>"A","INVOICE","") - and a few attempts at trying to stick LEN, LEFT, with an AND statement, but all failed.
Below image to illustrate that Invoice currently showing incorrectly against AA01B01
Many thanks in advance!
Dan