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! Learn more

Reply
gauravnarchal
Post Prodigy
Post Prodigy

Add Static value Column - Measure

Hello - How can I create a measure to show 10 value in each row of a table or matrix?

 

NameBranch(Measure) Add column and show 10 value in each row
ABC IntlNYC10
ZZZ LogisticsLON10
ABC IntlCAI10
ZZZ LogisticsMEL10
ABC IntlDEL10
ABC IntlSHA10
ABC IntlNYC10
ZZZ LogisticsNYC10
7 REPLIES 7
Anonymous
Not applicable

Hi @gauravnarchal ,

Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem with you. Thank you.

Best Regards

Anonymous
Not applicable

Hi @gauravnarchal ,

You can create a measure as below:

 

Measure = CALCULATE ( 10, ALLSELECTED ( 'Table' ) )

 

yingyinr_0-1622777853420.pngBest Regards

@Anonymous - I am getting below error when I try to enter this measure.

 

gauravnarchal_1-1623143704044.png

 

Anonymous
Not applicable

Hi @gauravnarchal ,

According to this official documentation, it is due to the visual has attempted to query too much data for us to complete the result with the available resources. It is recommended to filter the visual to reduce the amount of data in the result. You can adopt the method in the following link to resolve the problem.

The “Visual Has Exceeded The Available Resources” Error In Power BI

Or please update the formula of measure as below and check whether it still get any error.

Measure = CALCULATE ( 10, ALLSELECTED ( 'Table'[Name], 'Table'[Branch] ) )

Best Regards

amitchandak
Super User
Super User

@gauravnarchal , create a new measure

measure=10

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

@amitchandak  - I am getting the below error when I am trying to add this measure.

 

gauravnarchal_0-1623143639489.png

 

@amitchandak  - This measure is not working 😞 any other way I can do it?

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