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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
reubanrao93
New Member

Creating Measure with Filtered Column

Hello Power BI gurus,

 

I'm trying to create the following Measure based on the logic below. Data source is located in Report Sharepoint

 

Sum of items sold in Week 26 - Sum of items sold in Week 25 = 4  or  (4+3) - (2+1) = 4

Week NumberItem Sold
24'W264
24'W263
24'W252
24'W251
24'W244
24'W245
24'W238
24'W237
24'W236
24'W225

 

I've tired with the following formula however still unbale to get it to work. Would appreciate any guidance given. 

WoW Item sold = SUM('Report SharePoint'[Week Number IN {"24'W26"}) - SUM('Report SharePoint'[Week Number IN {"24'W25"})

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@reubanrao93 , You can create a measure using variables

ItemsSoldDifference =
VAR Week26Sales = CALCULATE(SUM('Table'[Item Sold]), 'Table'[Week Number] = "24'W26")
VAR Week25Sales = CALCULATE(SUM('Table'[Item Sold]), 'Table'[Week Number] = "24'W25")
RETURN
Week26Sales - Week25Sales




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!





View solution in original post

2 REPLIES 2
bhanu_gautam
Super User
Super User

@reubanrao93 , You can create a measure using variables

ItemsSoldDifference =
VAR Week26Sales = CALCULATE(SUM('Table'[Item Sold]), 'Table'[Week Number] = "24'W26")
VAR Week25Sales = CALCULATE(SUM('Table'[Item Sold]), 'Table'[Week Number] = "24'W25")
RETURN
Week26Sales - Week25Sales




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!





rajendraongole1
Community Champion
Community Champion

Hi @reubanrao93 -create a measure that calculates for week-over-week difference as below.

 

WoW Item Sold =
CALCULATE(
SUM('Report SharePoint'[Item Sold]),
'Report SharePoint'[Week Number] = "24'W26"
) -
CALCULATE(
SUM('Report SharePoint'[Item Sold]),
'Report SharePoint'[Week Number] = "24'W25"
)

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

Helpful resources

Announcements
Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors