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
mk5235
Frequent Visitor

Need to repeat a specific row value for all rows in column

Hi All,

 

I am working with a table, x_Market, that has a list of retailers, channels, and total market rows which is linked to a data table, x_Data, with SUM measure of sales data (Sales).

 

One row value is "All Stores", and I am trying to create a measure that will repeat this row value for all rows as below:

MarketSalesDesired Result
All Stores4,528,1904,528,190
Store 1434,7624,528,190
Store 2318,1584,528,190
Store 3342,9944,528,190
Store 4317,8254,528,190
Store 5408,9564,528,190
Store 6313,0634,528,190
Store 7128,3374,528,190
Channel 11,413,7394,528,190
Channel 2850,3564,528,190

 

Can anyone help with this? 

 

Thanks!

 

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

vicky__0-1700170843276.png

you can use something like the formula below to grab just the sales for one row:
desired result = CALCULATE(SUM('Table'[Sales]), ALL('Table'[Store]), 'Table'[Store] = "A")
 

View solution in original post

1 REPLY 1
vicky_
Super User
Super User

vicky__0-1700170843276.png

you can use something like the formula below to grab just the sales for one row:
desired result = CALCULATE(SUM('Table'[Sales]), ALL('Table'[Store]), 'Table'[Store] = "A")
 

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