Forum Discussion
MSA87
Aug 02, 2023Copper Contributor
Problem with calculate commission
Hello All, I have many conditions to calculate the following commission From 50,001 to 100,000 = 10% From 100,001 to = 20% Example: 1) Net of commission 55,000 = 5000*10%=500 2) Net of commission...
genchev_lbd
Aug 02, 2023Copper Contributor
Hey, What I would use is nested IFS where you can specify your conditions in the following way: =IF("<Insert field of value here>"> 55.000, 5000*10%=500, IF("<Insert field of value here and insert the condition as it is not clear>", (50.000*10%)+(5.000*20%), "Some other case")) The formula might have some small typos but this is the gist of it. I hope it helps.