Forum Discussion
kellysian
Aug 04, 2018Copper Contributor
How to create the formula to solve
Do you know how to create the formula to solve: 10 visit min; $30 after 10 visits; $50 after 25 visits
SergeiBaklan
Aug 11, 2018MVP
It could be
=IF(A1>25,50,IF(A1>10,30,0))