The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I'm trying to create a measure that calculates a flat 30% off the values of a different measure.
I've tried the following, which doesn't seem to calculate properly:
Solved! Go to Solution.
Hi @js124
If you want 30% OFF, try:
M1 = SUM('Sheet1'[Revenue]) * (70/100)
If you want 30% of the value:
M2 = SUM('Sheet1'[Revenue]) * (30/100)
Hi @js124
If you want 30% OFF, try:
M1 = SUM('Sheet1'[Revenue]) * (70/100)
If you want 30% of the value:
M2 = SUM('Sheet1'[Revenue]) * (30/100)
User | Count |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |