Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
joep78
Helper III
Helper III

Lookup function (=RELATED) including IF is Blank function

 hi There,

 

I have a quick question, I get information from another table with the function  =related and this works as expected. How ever, I also have empty lines (that are logical) but I want a '1' instead of empty (this for calculation purposes). Not sure if this is possible y/n, i couldn't find a suitable solultion.

 

So no I have: 

ReportingCurrencySpotRate = RELATED(BaseAccountingCommitment[ReportingSpotRate] 
 
and in case he couldn't find the corresponding ReportingSpotRate I want a default of 1. 
 
Hopefully this makes sense and there is a solution for this, thanks in advance for a reply.
1 ACCEPTED SOLUTION
tex628
Community Champion
Community Champion

Try this,

ReportingCurrencySpotRate = 
IF(
RELATED(BaseAccountingCommitment[ReportingSpotRate]) = BLANK() , 1 ,
RELATED(BaseAccountingCommitment[ReportingSpotRate])
)

Connect on LinkedIn

View solution in original post

2 REPLIES 2
tex628
Community Champion
Community Champion

Try this,

ReportingCurrencySpotRate = 
IF(
RELATED(BaseAccountingCommitment[ReportingSpotRate]) = BLANK() , 1 ,
RELATED(BaseAccountingCommitment[ReportingSpotRate])
)

Connect on LinkedIn

Thanks for this quick reply and solution, works as expected, great! kudos for you!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.