Forum Discussion
QueenieMak_qmsy
Jan 26, 2022Copper Contributor
Excel formula Combination
Hi I would like to combine the below 5 formulas in 1 formula, how could i do it? Item No. of date Formula A 14 IF(I10="A",14,0) Z 17 IF(I11="Z",17,0) J 70 IF(I12="J",70,0) ...
- Jan 27, 2022Maybe:
=IF(I10="A",14,IF(I10="Z",17,IF(I10="j",70,IF(I10="K",25,IF(I10="H",7,0)))))
JMB17
Jan 27, 2022Bronze Contributor
Perhaps
=Switch(I10, "A", 14, "Z", 17, "J", 70, "K", 25, "H", 7, 0)
=Switch(I10, "A", 14, "Z", 17, "J", 70, "K", 25, "H", 7, 0)
- QueenieMak_qmsyJan 27, 2022Copper ContributorNo switch at my excel, tks