Forum Discussion
feistyb
May 05, 2023Copper Contributor
sum of two drop down lists
Hi, I know this questions has probably been asked and answered, but I think I need a more direct answer. Thanks in advance!
- May 09, 2023
Yes, that makes all the difference! XLOOKUP is only available in Microsoft 365 and Office 2021, not in Office 2019.
Try this formula instead:
=IF(B13="",0,INDEX(BL[BL'#],MATCH(B13,BL[BL DESCRIPTION],0)))+IF(C13="",0,INDEX(BLHTM[HTM'#],MATCH(C13,BLHTM[HTM DESCRIPTION],0)))
Workbook with this formula attached.
HansVogelaar
May 08, 2023MVP
In that case, I don't understand why it doesn't work for you, sorry. The result of the formula changes when I select different items from the drop downs in columns B and C.
feistyb
May 08, 2023Copper Contributor
OK, Thank you for your help.