Apr 16 2024 04:28 AM - edited Apr 16 2024 04:30 AM
Good Afternoon,
I am trying to set up a new spreadsheet which minimises the workload required each time info is inputted.
Is it possible for a cell formula to change based on the choice from a drop down list?
In the example attached, to work out the gross weight of material the formula is (Gauge x Width x Pitch) x Gross usage calc. The gross usage calc changes depending on the material.
If you are to change the drop down choice in B7 can this change the formula needed in D2?
Cheers
Apr 16 2024 04:42 AM
Use
=PRODUCT(A2:C2,XLOOKUP(B7,$F$2:$F$4,$G$2:$G$4))
or
=A2*B2*C2*XLOOKUP(B7,$F$2:$F$4,$G$2:$G$4)
Apr 16 2024 04:50 AM
Apr 17 2024 03:23 AM
Apr 17 2024 03:38 AM