Hi, I’m wondering if there’s a way to do this. I have a table with the category of a used book and the original price. I want to create a formula that calculates the selling price based on the category of the book. So it would be IF category = A then take Original Price and deduct 30% to get the selling price. I’m not sure if I can do all of this in one go with an IF formula. But maybe I can do part of it? Thanks for the help!
Solved
If, then formula for percentage calculation
Best answer by Jeremy_Oglesby
You can do this much more efficiently with a SWITCH()
function:
{Price} *
SWITCH(
{Category},
"A", 0.7,
"B", 0.6,
"C", 0.8
)
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.