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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi all,
in a tabel I have several measures displayed and in one of the measures i would like to calculate the margin% but it seems to give wrong value.
44/50=88%
any idea where i might be doing wrong?
Solved! Go to Solution.
Probably a filter context issue...
What is the code for both measures and
what does each measure in the DIVIDE function deliver in a card visual?
Also what does the % measure deliver for the total row if added to the table visual?
Proud to be a Super User!
Paul on Linkedin.
Hi, @jalaomar ;
I tested a simple data, if your table's filter is different from your card visual , so it may be cause the different result.such as:
1.when the table's filter is enddate is not 2021-2-1,the result is 4/5=0.8
2.if the table not have filter .it show 0.67
3.So keep the filter criteria consistent in every visual.
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
So true!!
Probably a filter context issue...
What is the code for both measures and
what does each measure in the DIVIDE function deliver in a card visual?
Also what does the % measure deliver for the total row if added to the table visual?
Proud to be a Super User!
Paul on Linkedin.
Hi,
I need to calculate how many projects that have fulfilled a certain criteria, all else is working well.
These are my measures
VSU Days = DATEDIFF('KPI'[MIS3.1Actual 2];'KPI'[ITG4Actual2];DAY)
VSU 5 weeks = IF('KPI'[VSU Days] <=35; "1";"0")
PVoT Days = DATEDIFF('KPI'[ITG4Baseline2];'KPI'[ITG4Actual2];DAY)
ITG4 fullfillmentX = SWITCH(TRUE();
Count total = CALCULATE(COUNTROWS('KPI'))
@jalaomar ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Try like
Divide([Count of VSU fullfilment]*1.0, [Count Total])
Hi, These are my measures
VSU Days = DATEDIFF('KPI'[MIS3.1Actual 2];'KPI'[ITG4Actual2];DAY)
VSU 5 weeks = IF('KPI'[VSU Days] <=35; "1";"0")
PVoT Days = DATEDIFF('KPI'[ITG4Baseline2];'KPI'[ITG4Actual2];DAY)
ITG4 fullfillmentX = SWITCH(TRUE();
Count total = CALCULATE(COUNTROWS('KPI'))
Change the [Count of SVU fulfillment] to
Count of VSU fullfillment = CALCULATE(COUNTROWS('KPI'); FILTER('KPI'; [VSU 5 weeks]=1))
Also, please provide the answers to the following:
what does each measure in the DIVIDE function deliver in a card visual?
Also what does the % measure deliver for the total row if added to the table visual?
Proud to be a Super User!
Paul on Linkedin.
Hi,
What should I change in the measure?
Count of VSU fullfillment = CALCULATE(COUNTROWS('KPI'); FILTER('KPI'; [VSU 5 weeks]="1"))
what does each measure in the DIVIDE function deliver in a card visual?
Count of VSU fullfillment measure is calculating the total number of rows that has the value 1 (1 is a string)
Count Total is a measure calculating the total number of rows in the table
Calculate margin% is calculating the % of projects that have the value 1
Value 1 is indicating that the project has managed to deliver a machine within 35 days (diff between 2 actual dates)
Also what does the % measure deliver for the total row if added to the table visual?
Count Total & Count of VSU fullfillment I will not visualize in the table, just wanted to verify that the measure is working properly
but Magin% i need to visualize as it is the KPI value to indicate the % of projects that has reached target.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 30 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 128 | |
| 102 | |
| 57 | |
| 39 | |
| 31 |