Formula XLookup if target cell is not 0 nor empty

Hermac

New Member
Joined
Sep 5, 2016
Messages
32
Office Version
  1. 365
Platform
  1. Windows
Hello,
I'm looking for a formula like this one XLookup($C3;$C$4:$C$50;D$4:D$50) but if this leads to an empty cell or a cell with 0 I want a blank result (empty cell).
I know I could do it with an if-formula but that would be a very long one where the lookup chain $C3;$C$4:$C$50;D$4:D$50 would appear 3 times.
Would you have any better idea ?
Thank you very much
Herman
 
Try
Excel Formula:
LET(v,XLOOKUP($C3,$C$4:$C$50,D$4:D$50),IF(v=0,"",v))
 
Upvote 0
Solution
Thank you very much Peter. I was never aware of this Let function and it solves many of my other problems.
Have a beautiful day.
Heerman
 
Upvote 0
You're welcome. thanks for the follow-up. :)

Let function ... solves many of my other problems
All the LET function does is allow you write shorter, more efficient, formulas. It doesn't actually allow or do any calculations that couldn't already be done with longer formulas.
 
Upvote 0

Forum statistics

Threads
1,226,880
Messages
6,193,478
Members
453,802
Latest member
SarahNoob

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top