I’m working on creating a Table that lists Expenses.
I’m currently using the following formula to populate a Title for the first column in the table based on columns: Vendor, Frequency, Price, Per Member Price?, Users and Total Due. The “Per Member Price?” is a checkbox field and the Total Due column is calculated by multiplying Price x Users.
CONCATENATE({Vendor}, " ($", {Total Due}, Frequency, IF({Per Member Price?}, " per member", ""), ")")
This results in data displaying like this:
App 1 ($52/mo.)
if the “Per Member Price?” is not checked OR App 1 ($52/mo. per member)
if the “Per Member Price?” is checked.
The problem is, is that regardless of if it’s supposed to be per user or not, the Total Due is always present vs conditionally showing the per member price as defined in the Price column.
I THINK I might need a nested condition here within the CONCATENATE… something like:
CONCATENATE({Vendor}, IF( {Per Member Price?} = 0, "$", {Total Due}, Frequency, IF({Per Member Price?}, "$", Price, Frequency, " per member", ""), ) )
That last formula doesn’t work/is broken so I’m looking to see if anyone who’s got more experience with formula’s can help me sort it out.
Ideally the end result would be the cell displaying it’s data like this:
App 1 ($52/mo.)
if the “Per Member Price?” is not checked OR App 1 ($13/mo. per member)
if the “Per Member Price?” is checked.
Any help/tips would be appreciated.