I wish to create a conditional autonumber field using two numbers within the same field. I can do this in excel with the following queries.
A B
1 PRO 900000
2 900000
3 PRO =IF(A4="PRO",COUNTIF($A$4:A4,"PRO"
+$B$2,COUNTIF ($A$4:A4,"<>PRO"
+$B$3)
4 =IF(A4="PRO",COUNTIF($A$4:A4,"PRO"
+$B$2,COUNTIF ($A$4:A4,"<>PRO"
+$B$3)
I later concatenate the two columns to create unique records. As you can see the strings would end up being PRO900001 or 900001.
I would be very grateful for any help.
A B
1 PRO 900000
2 900000
3 PRO =IF(A4="PRO",COUNTIF($A$4:A4,"PRO"
4 =IF(A4="PRO",COUNTIF($A$4:A4,"PRO"
I later concatenate the two columns to create unique records. As you can see the strings would end up being PRO900001 or 900001.
I would be very grateful for any help.