Oct 07, 2018 02:10 PM
Hi all!
I’m looking for a formula solution that will enable me to either:
Current code:
CONCATENATE(COUNTA(“https”)," / ",IF({Advertising allowance}=“Daily”, “30”,IF({Advertising allowance}=“Weekly”, “4”,IF({Advertising allowance}=“Bi-Monthly”, “2”,IF({Advertising allowance}=“Monthly”, “1”)))))
Oct 07, 2018 02:59 PM
Assuming the URLs are all in individual fields…
Try the following: COUNTA({URL Field 1}, {URL Field 2}, {URL Field 3})…
If you have a lot of URL fields, it may also be worth looking at whether they should be in a linked table instead of having multiple columns.
Oct 07, 2018 03:05 PM
Thanks Julian!
That’s exactly what I ended up doing as I thought through it more.