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
Anonymous
Not applicable

Problem showing a column from a Calculated table

Hello guys!

I would like to ask for you help in the following problem I've being stocked in.

I did created a Date Calculated table made from DAX

 

date guardado.PNG

I would like to make a flag column witch mark sundays  as 1 and the rest of the week days 0.

Then count how many days in 1 and in 0 do wee have per month.

for that I already did the flag column 

laboral day.PNG

 

 

 

 

 

But when I only try to display de 0 and 1 value of the Column DiaLaboral, the column doesn't display any value at all.

 

blank.PNG

Am I missing something?

 

Thank you for the help!

 

 

 

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

Hi @Anonymous ,

 

If you want to display the value of  'DiaLaboral' column in table visual. You should drag other column in values of table visual. Or you can view it in Data page

 

According to your descriptions, if you want use the table visual to show the count of sundays and week days for per month.

 

I suggest you drag 'Year' column, 'Monthnumber' column,two 'DiaLaboral' columns (set one of it to 'Don't summarize' and the other one to 'Count') into values of table visual.

Untitled picture3.pngUntitled picture4.pngUntitled picture5.png

 

Please refer to the pbix file: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EUHf6ecwjN1Fnp7mpIfNEKsBqVbft8cZv1_OclDl5_UvVQ?e=ytz5Kl

 

Best Regards,

Dedmon Dai

View solution in original post

3 REPLIES 3
v-deddai1-msft
Community Support
Community Support

Hi @Anonymous ,

 

If you want to display the value of  'DiaLaboral' column in table visual. You should drag other column in values of table visual. Or you can view it in Data page

 

According to your descriptions, if you want use the table visual to show the count of sundays and week days for per month.

 

I suggest you drag 'Year' column, 'Monthnumber' column,two 'DiaLaboral' columns (set one of it to 'Don't summarize' and the other one to 'Count') into values of table visual.

Untitled picture3.pngUntitled picture4.pngUntitled picture5.png

 

Please refer to the pbix file: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EUHf6ecwjN1Fnp7mpIfNEKsBqVbft8cZv1_OclDl5_UvVQ?e=ytz5Kl

 

Best Regards,

Dedmon Dai

amitchandak
Super User
Super User

@Anonymous ,Create a new column

Sunday = if(Weekday([Date])=1,1,0)

In visual you can use Sum(Table[Sunday]),

In case of No data just check for any filters on the page

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
Ashish_Mathur
Super User
Super User

Hi,

To your Table visual, drag MonthNameShort to the row labels and write this measure

COUNTROWS(Date)

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
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!

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 Solution Authors