Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I built a report with the tables displayed in the screen shot below.
The table HostedDBs provides the list of all customers: 67
The table Tickets provides the list of customer using a feature: 46
Using another measure as sort of template, I generated this measure. The measure returns Blank instead of 21
Any suggestion on what to do to fix it, please?
ZeroSender =
var AllStores = DISTINCT(HostedDBs[HDEveCustID])
var ActiveStores = DISTINCT(Tickets[TkCustID])
var NonActiveStores = EXCEPT(AllStores,ActiveStores)
return
IF(HASONEVALUE(HostedDBs[HDEveCustID])
,IF(FIRSTNONBLANK(HostedDBs[HDEveCustID],0) in NonActiveStores, 1 , BLANK())
,BLANK()
)
Solved! Go to Solution.
l solved this situation with a different approach.
I created a Merged Table, with Left Anti (Rows only in the first table) Join option. It works a treat.
l solved this situation with a different approach.
I created a Merged Table, with Left Anti (Rows only in the first table) Join option. It works a treat.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.