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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
adavid999
Helper V
Helper V

Simple calculation

Hi,

Please could you remind how best to acheive this...I have table data and would like a new column or measure that shows sum of score for each question based on year, so total for question 1 would be 5, and question 2 would be 6, question 3 would be 8.

Thanks!

A

 

Question

Year

Score
120192
120183
220193
220183
320194
320184
7 REPLIES 7
FrankAT
Community Champion
Community Champion

Hi @adavid999 ,

take a look at the figure:

30-03-_2020_17-47-21.png

 

Regards FrankAT

 

Thanks @FrankAT I guess i should have been clearer - i need to be able to use the sum in another calculation.

Cheers,

A

@adavid999 - If you need the sum in a different calculation it would help to know the calculation. But, in general you could do something like:

 

Measure = 

  VAR __Table = SUMMARIZE('Table',[Question],"__Score",SUM([Score]))

RETURN

  <some calculation across __Table>


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

thanks @Greg_Deckler I will try this and if I don't get anywhere (likely) I will try and more clearly state what I am trying to acheive...

A

Greg_Deckler
Super User
Super User

Just put Question in a table visualization along with Score and use default Sum aggregation for Score?

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@adavid999 

If plot sum(Table[Score]) By question and year it should give you that

 

Or you want this year vs last year

This Year = calculate(Sum(Table[Score])filter(all(Table),Table[Year] =max(Table[Year])))
last Year = calculate(Sum(Table[Score])filter(all(Table),Table[Year] =max(Table[Year])-1))

 

Thanks for quick response @amitchandak . I need the result of sum for both years to be used in another calculation. There are many questions, with many different potential filters to view the scores. I'm not sure if plot sum(Table[Score]) will get me there, but will try.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.