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
goodbecenergy
Resolver I
Resolver I

Counting unique values - formula adjustment

I have some tables set up like this: 

goodbecenergy_0-1708683086676.png

 

 

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:

b2c_site_active = CALCULATE(DISTINCTCOUNT('psa FIT_B2C_meter'[SiteID]),
('psa FIT_B2C_meter'[site.ContractTerminationDate] > now() || 'psa FIT_B2C_meter'[site.ContractTerminationDate] = BLANK()) &&
('psa FIT_B2C_meter'[site.ClosedDate] > now() ||'psa FIT_B2C_meter'[site.ClosedDate] = BLANK()),'psa FIT_B2C_meter'[b2c_meter_active] > 0)

 

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):

goodbecenergy_1-1708683285762.png

 

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.

1 REPLY 1
jolind1996
Resolver II
Resolver II

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 

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.