Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am trying to show a factor based on a date; however, I want the aggregate to be the division of the aggregated totals (i.e. . When there is no claim the completion factor is coming in blank, but I would still like it to populate for a row context. I tried using IF(ISBLANK(LOOKUPVALUE... but then that shows rows that have no data. Is there a way to only show data for the rows that have premium data or claims?
Solved! Go to Solution.
@Anonymous wrote:
Is there a way to only show data for the rows that have premium data or claims?
Couldn't you just add these checks to your IF expression ?
eg.
IF ( ISBLANK( DIVIDE( ... )) && ( NOT(ISBLANK( [Gross Premium] )) || NOT( ISBLANK( [Paid Claims] ))) , ...
@Anonymous wrote:
Is there a way to only show data for the rows that have premium data or claims?
Couldn't you just add these checks to your IF expression ?
eg.
IF ( ISBLANK( DIVIDE( ... )) && ( NOT(ISBLANK( [Gross Premium] )) || NOT( ISBLANK( [Paid Claims] ))) , ...
Thank you! Adding in the criteria NOT(ISBLANK(...) around my premium field did the trick!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!