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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
AnkurSharma
Helper I
Helper I

% in power bi table

Hi ,

 

I need some help here ,

 

I am trying to create one Table in power bi .

1st column I need Count of without date in column and Total count in second column ( with date and without date ) & 3rd column % (count of without date / Total count)

 

 

Capture.PNG

I applied filer on visulisation of No date so when i drag another count that filter applies to this.

 

In need one colum have those which dont have date 

2 nd column shows Total count

3rd column shows no date count/Total count

 

 

Or simply we can say i am trying to show % of No date.

 

 

 

  

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @AnkurSharma ,

I created a sample pbix file(see the attachment), please check if that is what you want. You can create the measures as below to get it:

Count of No date = COUNTROWS ( FILTER ( 'Table', ISBLANK ( 'Table'[WO Date] ) ) )
Total Count = COUNTROWS ( 'Table' )
% of No data = DIVIDE ( [Count of No date], [Total Count] )

yingyinr_0-1670569704492.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @AnkurSharma ,

I created a sample pbix file(see the attachment), please check if that is what you want. You can create the measures as below to get it:

Count of No date = COUNTROWS ( FILTER ( 'Table', ISBLANK ( 'Table'[WO Date] ) ) )
Total Count = COUNTROWS ( 'Table' )
% of No data = DIVIDE ( [Count of No date], [Total Count] )

yingyinr_0-1670569704492.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

amitchandak
Super User
Super User

@AnkurSharma , What do you mean by no Date, ignore date context

 

calculate(count(Table[Column]), removefilters(date))

 

or

 

calculate(count(Table[Column]), all(date))

 

 

Or remove all filters

 

calculate(count(Table[Column]), all())

 

The information you have provided is not making the problem clear to me. Can you please explain with an example.

Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.