Oct 23, 2023 08:49 AM
I have 5 non-value fields that indicate if a person has paid an application fee or not. The fields are:
180 GBP, 210 GBP, 240 GBP, 270 GBP, and 300 GBP. If a person has paid, it will say "Completed" under the column that they have paid. It will say "Not Started" if they have not paid.
For example: If person A has paid the fee of 240 GBP, it will say "Completed" under that column, and it will say "Not completed" under all of the other monetary columns. (it was not my idea to organise it this way, it is just the way it has to be!)
I would like to add a formula field called "Paid" that can identify if a person has paid (Yes or No) based on the statuses of the 5 monetary value columns. I want it to recognize that if 1 of the columns in a row is "completed" that the "Paid" value will be "Yes."
Does anyone know if this is possible? Please see photo attached for an example of how the fields are laid out, and a sample "paid" field.
Solved! Go to Solution.
Oct 23, 2023 09:08 AM
The quick and dirty nested IF-formula:
IF({180 GBP}="Completed", "Yes", IF({210 GBP}="Completed", "Yes", IF({240 GBP}="Completed", "Yes", IF({270 GBP}="Completed", "Yes", IF({300 GBP}="Completed", "Yes", "No")))))
it was not my idea to organise it this way, it is just the way it has to be!
Ok, I'll let this one slide then 😬😅
Oct 23, 2023 09:08 AM
The quick and dirty nested IF-formula:
IF({180 GBP}="Completed", "Yes", IF({210 GBP}="Completed", "Yes", IF({240 GBP}="Completed", "Yes", IF({270 GBP}="Completed", "Yes", IF({300 GBP}="Completed", "Yes", "No")))))
it was not my idea to organise it this way, it is just the way it has to be!
Ok, I'll let this one slide then 😬😅
Oct 23, 2023 09:28 AM
I have been messing around with nested formulas for about an hour and it warms my heart knowing that what I had recently written was actually close to the formula you provided above (Which worked perfectly).
Thank you so much! Working with someone else's data organisation can be a bit interesting sometimes 😅
Oct 23, 2023 11:31 AM
My pleasure! Don't forget to mark my answer as the solution, so others can also find it.
Oct 23, 2023 06:47 PM
Hi,
Other way to accomplish the task. Will not work if somebody turn other option to 'Not Completed'
IF(FIND('Completed',{180 GBP}&{210 GBP}&{240 GBP}&{270 GBP}&{300 GBP}), 'Yes', 'No')