SOLVED

Xlookup

Copper Contributor

When I use this formula   =XLOOKUP([@[Genius ID]],Genius!AN:AN,Genius!P:P,"")

 

I am getting 0's for blank cells in the lookup.  How can I get results with just a blank instead of a zero?

Ty

3 Replies
best response confirmed by Ron_Hockman1525 (Copper Contributor)
Solution

Hi @Ron_Hockman1525 

 

=LET(
  xlp, XLOOKUP([@[Genius ID]], Genius!AN:AN, Genius!P:P, ""),
  IF(ISBLANK(xlp), "", xlp)
)
Brilliant. Thanks so much for your help.

You're welcome @Ron_Hockman1525 

Feel free to click the Mark as solution link at the bottom of the solution to help those who Search - Thanks

1 best response

Accepted Solutions
best response confirmed by Ron_Hockman1525 (Copper Contributor)
Solution

Hi @Ron_Hockman1525 

 

=LET(
  xlp, XLOOKUP([@[Genius ID]], Genius!AN:AN, Genius!P:P, ""),
  IF(ISBLANK(xlp), "", xlp)
)

View solution in original post