How can I simplify this formula and also create a loop?

Copper Contributor

This is a simple If formula:

 

=IF(G26=1,8,IF(G26=2,16,IF(G26=3,24,IF(G26=4,32,IF(G26=5,40,IF(G26=6,48,IF(G26=7,56,IF(G26=8,64,IF(G26=9,72,IF(G26=10,80))))))))))

 

cell G26 is an input cell where the user enters number of PTO days in a given month

the formula should return the number of working hours (8) for the given value where 1 day = 8hrs, 2 days = 16 days, etc.

I used the above formula but I am sure there is an easier way

1 Reply

@GabeR918 Why not just:

=G26*8