Oct 07, 2019 12:23 PM
Column #1
{Need Hotel?}
Yes or No
Column #2
{Hotel Cost (Estimate)}
{Estimated # Staff} * 250 * {Duration (Days) (Do Not Edit)}
What I need is to change the column in #2 so that If {Need Hotel?} = Yes, then Do {Estimated # Staff} * 250 * {Duration (Days) (Do Not Edit)}
Solved! Go to Solution.
Oct 07, 2019 01:14 PM
Make your second column a formula field with this formula:
IF({Need Hotel?}='Yes', {Estimated # Staff} * 250 * {Duration (Days)(Do Not Edit)}, 0)
Oct 07, 2019 01:14 PM
Make your second column a formula field with this formula:
IF({Need Hotel?}='Yes', {Estimated # Staff} * 250 * {Duration (Days)(Do Not Edit)}, 0)
Oct 08, 2019 05:10 AM
Thank you. That worked perfectly.