问题:
- I have a counter cell: A1 with a value of
=COUNTIF(B:B;"FOO")
- This gives me a current "count" of all instances of "FOO" in column B.
- I have a value cell C1 with a formula of:
=IF(B1="FOO";"FOO_" & A1;)
- This gives me a result of FOO_1 if "FOO" only exists once in Column B
Question:
- I want to be able to reference the value of A1 at the time I write out the contents to the cell of C1. When A1 updates, I do not want C1 to be modified. C2 should now take the update of A1 (which would now be 2) and C2 would be:
FOO_2
for example:
A1 = 1 B1 = FOO C1 = FOO_1
A1 = 2 B2 = FOO C2 = FOO_2
C1仍然是FOO_1,根据A1的价值,在B栏增加新行之前
Looking for an automated way to create an ID, like an increment value in MySQL, and not looking for a solution that involves a person copy / pasting..