- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Create a calculated measure based on a column and measure
Hello,
I would like to create a table within Power BI Desktop. I have a benchmark column, and a closed ticket measure. I would like to create a new value that is the first two values multiplied by one another. When I try and do this I get an error.
Any ideas?
Category Tier | Benchmark | Closed Tickets | Ticket Factor |
MDA | 2 | 1 | 2 |
WEDCS | 4 | 2 | 8 |
BlueKaik | 6 | 3 | 18 |
Sincerely,
Nick
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
The problem is that you need to apply a calcul on your column before multiply it with your measure.
You have several solutions for that :
Sum first then multiplication :
New Measure = SUM( [benchmark] ) * [closed ticket]
Multiplication then sum :
New measure = SUMX( 'YourTable' ; [benchmark] * [closed ticket] )
You can use SUMMARIZE fonction if the situation is more complicated, but those examples is sufficient to my opinion.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
The problem is that you need to apply a calcul on your column before multiply it with your measure.
You have several solutions for that :
Sum first then multiplication :
New Measure = SUM( [benchmark] ) * [closed ticket]
Multiplication then sum :
New measure = SUMX( 'YourTable' ; [benchmark] * [closed ticket] )
You can use SUMMARIZE fonction if the situation is more complicated, but those examples is sufficient to my opinion.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
12-08-2023 03:12 PM | |||
05-24-2024 12:54 AM | |||
11-22-2023 06:11 AM | |||
01-04-2024 02:28 AM | |||
10-09-2023 04:38 PM |
User | Count |
---|---|
141 | |
112 | |
83 | |
63 | |
47 |