=IF(C12=“1,2,3,4” 50+B7+B8*1.25)
The part in Bold is where I have the issue. I need IF() to cover multiple Texts/Numbers because typing,
=IF(C12=“1” 50+B7+B81.25)
=IF(C12=“2” 50+B7+B81.25)
=IF(C12=3" 50+B7+B81.25)
=IF(C12=4" 50+B7+B81.25)
Up to 50 with slight difference for each 5 levels, but Libreoffice won’t allow that so I need to know how to type a shortened, compact, version.
I’ve tried
=IF(C12=“1,2,3,4” 50+B7+B8*1.25)
=IF(C12=“1:4” 50+B7+B8*1.25)
=IF(C12=“1-4” 50+B7+B8*1.25)
but all those throw off errors.