SyaefulBahri3
5 years agoQrew Trainee
Formula text for preferred approver
Hi All, I have this condition If purchase <= 2000 approver Diana If purchase > 2000 approver Rob With this condition, I can create formula text "Approver" with this If( [Purchase Price]...
- 5 years agono problem,
Quick Base evaluates the IF statement conditions in the sequence as listed, so just deal with the more specific situations first.
IF(
[Specific type] = "Communications" and [Purchase Price] <= 2000, "Curley",
[Specific type] = "Trade" and [Purchase Price] <= 2000, "Larry",
[Specific type] = "Economics" and [Purchase Price] <= 2000, "Moe",
[Specific type] = "Communications" and [Purchase Price] > 2000, "Wilma",
[Specific type] = "Trade" and [Purchase Price] > 2000, "Fred",
[Specific type] = "Economics" and [Purchase Price] > 2000, "Barney",
[Purchase Price] <= 2000, "Diana",
[Purchase Price] > 2000, "Rob")
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
markshnier2@gmail.com
------------------------------