Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply
Anonymous
Not applicable

Column Chart - measure based on axis value

We have Dynamics CE in our org and for measuring some metrics around it, we need to know the total number of licensed users for each month.

 

I have a systemsuser table which has these fields -

Licensed Date - the day the user was assigned a license

License Revoke Date - the day when the user's license was disabled.

 

I am now trying to plot a column chart that shows the number of licensed users for each month.

 

I added a measure to calculate the number of licensed users for March -

( Number of users who were licensed before end of the month - Number of users whose license was revoked before the start of the month - Number of users whose license was revoked after the end of the month)

 

CALCULATE(
    COUNT(
        systemuser[fullname]),
        FILTER(
            systemuser,
            NOT(ISBLANK(systemuser[new_azurelicenseddate])) &&
            systemuser[new_azurelicenseddate].[Date]<DATE(2020,3,31)
        )
    ) - CALCULATE(
    COUNT(
        systemuser[fullname]),
        FILTER(
            systemuser,
            NOT(ISBLANK(systemuser[new_azurerevokeddate])) &&
            systemuser[new_azurerevokeddate].[Date]>DATE(2020,3,31)
        )
    ) - CALCULATE(
    COUNT(
        systemuser[fullname]),
        FILTER(
            systemuser,
            NOT(ISBLANK(systemuser[new_azurerevokeddate])) &&
            systemuser[new_azurerevokeddate].[Date]<DATE(2020,3,1)
        )
    )

 

 Now, how do I create a measure (or some other way) that will give me the number of licensed users for each month.

1 ACCEPTED SOLUTION
v-eachen-msft
Community Support
Community Support

Hi @Anonymous ,

 

You need a distinct date table to do it and use SELECTEDVALUE() to replace your hardcode.

Here is my sample result.

3-1.PNG

Here is my test file for your reference.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

1 REPLY 1
v-eachen-msft
Community Support
Community Support

Hi @Anonymous ,

 

You need a distinct date table to do it and use SELECTEDVALUE() to replace your hardcode.

Here is my sample result.

3-1.PNG

Here is my test file for your reference.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors