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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi!
I need help!!!
This is my query SQL:
Select (a.cump * 100 / a.total) as perc_error
from (
Select (
Select Count(*)
from adm.event ev
where ev.feature = 'KPIS'
and ev.id in (
Select da.event_id
from adm.data da
where da.feature = 'KPIS'
and da.jhi_type = 'VALID_WEIGHT'
)
and (ev.params like '%tipo=Pedido%' or ev.params like '%tipo=Contenedor%')
) as cump,
(
Select Count(*)
from adm.event ev
where ev.feature = 'KPIS'
) as total
) a;
And my DAX:
%perc_error= IF(ISBLANK(DIVIDE([number error],CALCULATE(COUNTROWS(dim_event),FILTER(dim_event,dim_event[feature]="KPIS")),0)),0,DIVIDE([number error],CALCULATE(COUNTROWS(dim_event),FILTER(dim_event,dim_event[feature]="KPIS")),0))
But it doesn't work properly, can you help me?
Solved! Go to Solution.
Hi , @Sarencibia
You can try to create a measure like this:
Test =
VAR _total =
COUNTROWS ( FILTER ( ALL ( 'adm.event' ), 'adm.event'[feature] = "KPIS" ) )
VAR _event_id =
FILTER (
ALL ( 'adm.data' ),
'adm.data'[feature] = "KPIS"
&& 'adm.data'[jhi_type] = "VALID_WEIGHT"
)
VAR _cump =
COUNTROWS (
CALCULATETABLE (
FILTER (
ALL ( 'adm.event' ),
'adm.event'[feature] = "KPIS"
&& 'adm.event'[id] IN _event_id
),
CONTAINSSTRINGEXACT ( 'adm.event'[params], "tipo=Pedido" )
|| CONTAINSSTRINGEXACT ( 'adm.event'[params], "tipo=Contenedor" )
)
)
RETURN
DIVIDE ( _cump * 100, _total )
If it dosen't work ,you can provide us with your special sample data (without sensitive data) so that we can help you better.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @Sarencibia
You can try to create a measure like this:
Test =
VAR _total =
COUNTROWS ( FILTER ( ALL ( 'adm.event' ), 'adm.event'[feature] = "KPIS" ) )
VAR _event_id =
FILTER (
ALL ( 'adm.data' ),
'adm.data'[feature] = "KPIS"
&& 'adm.data'[jhi_type] = "VALID_WEIGHT"
)
VAR _cump =
COUNTROWS (
CALCULATETABLE (
FILTER (
ALL ( 'adm.event' ),
'adm.event'[feature] = "KPIS"
&& 'adm.event'[id] IN _event_id
),
CONTAINSSTRINGEXACT ( 'adm.event'[params], "tipo=Pedido" )
|| CONTAINSSTRINGEXACT ( 'adm.event'[params], "tipo=Contenedor" )
)
)
RETURN
DIVIDE ( _cump * 100, _total )
If it dosen't work ,you can provide us with your special sample data (without sensitive data) so that we can help you better.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 8 | |
| 7 | |
| 7 |