Forum Discussion
joep78
6 years agoHelper 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 ...
- 6 years ago
Try this,
ReportingCurrencySpotRate = IF( RELATED(BaseAccountingCommitment[ReportingSpotRate]) = BLANK() , 1 , RELATED(BaseAccountingCommitment[ReportingSpotRate]) )
tex628
6 years agoCommunity Champion
Try this,
ReportingCurrencySpotRate =
IF(
RELATED(BaseAccountingCommitment[ReportingSpotRate]) = BLANK() , 1 ,
RELATED(BaseAccountingCommitment[ReportingSpotRate])
)- joep786 years agoHelper III
Thanks for this quick reply and solution, works as expected, great! kudos for you!