The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have some tables set up like this:
I need to see whether meter reads are being submitted on time. Linking _site to _meter to _reading was too much for my tiny brain to comprehend so I merged the queries via site id.
This formula that I first thought was genius is now fast becoming the bane of my life:
The last filter about b2c meter >0 is a recent addition to try to solve the issue.
It is doing what it says on the tin but it is placing a '1' in each occurence of the site (sites indeed have multiple active meters):
My end goal is to see what percentage of customers submit 1,2,3 or 4 times a year but the first step is getting some baseline numbers about number of active/inactive sites and meters.
Thanks in advance.
Does this work:
b2c_site_active = CALCULATE( DISTINCTCOUNT('psa FIT_B2C_meter'[SiteID]), ('psa FIT_B2C_meter'[site.ContractTerminationDate] > NOW() || ISBLANK('psa FIT_B2C_meter'[site.ContractTerminationDate])) && ('psa FIT_B2C_meter'[site.ClosedDate] > NOW() || ISBLANK('psa FIT_B2C_meter'[site.ClosedDate])), 'psa FIT_B2C_meter'[b2c_meter_active] > 0 )
Best regards,
Johannes
User | Count |
---|---|
78 | |
74 | |
43 | |
32 | |
28 |
User | Count |
---|---|
104 | |
93 | |
52 | |
50 | |
46 |