Mar 03, 2023 10:55 AM
I'm in a pickle and I can't figure out what to do even though I've read a lot of posts here and asked ChatGPT to help me over and over but nothing.
I've got three fields that are formulas but they're formatted into integer type.
1. {Fecha limite de adeudo (dia)} and it's formula:
Solved! Go to Solution.
Mar 03, 2023 03:27 PM
Hi @irvingjbeltran,
The route of your issue is in your final calculation, it's also a very small mistake. In order to get the result you would like you need to remove the false condition from your formula (highlighted in red below). This is because if you keep the empty "", airtable assigns this columns result type as a string, since one of the possible results of your formula is technically an empty string. By removing that condition, you formula only executes when one of your Quincena fields is populated, rather than executing on all and assigning an empty string to those records where those fields are not populated.
Current Formula:
I hope this helps!
Mar 03, 2023 03:27 PM
Hi @irvingjbeltran,
The route of your issue is in your final calculation, it's also a very small mistake. In order to get the result you would like you need to remove the false condition from your formula (highlighted in red below). This is because if you keep the empty "", airtable assigns this columns result type as a string, since one of the possible results of your formula is technically an empty string. By removing that condition, you formula only executes when one of your Quincena fields is populated, rather than executing on all and assigning an empty string to those records where those fields are not populated.
Current Formula:
I hope this helps!
Mar 03, 2023 04:43 PM
I didn't know about that! Thank you very much!