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! Learn more
 
					
				
		
display all status but complete status should include value of Approaching Expiry and Expired
I need complete count to be 147(complete + Approaching Expiry + Expired) How to do that
Solved! Go to Solution.
 
					
				
		
Hi, @Anonymous 
According to your description, you want to generate more rows in the visual, however, according to the calculation rules, you must have 147 rows in the table (complete + Approaching Expiry + Expired), which is not realistic and is not supported in the logic of the table and in the current version of Power BI. You can use a card to display the total value or use the Summarize function to implement a virtual table, as shown below:
1.Use Card
SumValue =
CALCULATE (
    COUNTROWS ( 'Table' ),
    FILTER (
        'Table',
        'Table'[Status] = "Complete"
            || 'Table'[Status] = "Appproching Expiry"
            || 'Table'[Status] = "Expired"
    )
)
2. Use Summarize function
Table 2 =
SUMMARIZE (
    'Table',
    "SumCompleteandApprochingExpiryandExpired",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER (
                'Table',
                'Table'[Status] = "Complete"
                    || 'Table'[Status] = "Appproching Expiry"
                    || 'Table'[Status] = "Expired"
            )
        ),
    "Complete",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Complete" )
        ),
    "Request Cancelled",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Request Cancelled" )
        ),
    "Appproching Expiry",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Appproching Expiry" )
        ),
    "Expired",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Expired" )
        )
)
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
 
					
				
		
Hi, @Anonymous 
According to your description, you want to generate more rows in the visual, however, according to the calculation rules, you must have 147 rows in the table (complete + Approaching Expiry + Expired), which is not realistic and is not supported in the logic of the table and in the current version of Power BI. You can use a card to display the total value or use the Summarize function to implement a virtual table, as shown below:
1.Use Card
SumValue =
CALCULATE (
    COUNTROWS ( 'Table' ),
    FILTER (
        'Table',
        'Table'[Status] = "Complete"
            || 'Table'[Status] = "Appproching Expiry"
            || 'Table'[Status] = "Expired"
    )
)
2. Use Summarize function
Table 2 =
SUMMARIZE (
    'Table',
    "SumCompleteandApprochingExpiryandExpired",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER (
                'Table',
                'Table'[Status] = "Complete"
                    || 'Table'[Status] = "Appproching Expiry"
                    || 'Table'[Status] = "Expired"
            )
        ),
    "Complete",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Complete" )
        ),
    "Request Cancelled",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Request Cancelled" )
        ),
    "Appproching Expiry",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Appproching Expiry" )
        ),
    "Expired",
        CALCULATE (
            COUNTROWS ( 'Table' ),
            FILTER ( 'Table', 'Table'[Status] = "Expired" )
        )
)
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
It depends on how is arranged your model, you can do this with a calculated column.
show the measure used. Anyway this could be the formula:
 
					
				
				
			
		
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.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |