The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have some graphics that as the filter made the values of these graphs is blank or infinite, and according to the business rule that can happen but I need to make when this happens does not show anything, no value should be displayed, is possible to do that?
@Anonymous for all Measures that give you BLANK() in Cards do the following...
= IF ( ISBLANK ( [Expression]), 0, [Expression] )
@Anonymous infinity happens when you divide by zero so instead of / use the DIVIDE function
= DIVIDE( [Numerator], [Denominator], 0)
tried to use the DIVIDE function in my measure however is not working
% Target Revenue Surplus = (DIVIDE (CALCULATE (SUM (Facts [Vl_Suplementado]) * 100; Facts [OrigemRecurso_DS] = "Surplus Financial") / sum (Facts [Vl_ReceitaPrevista])) / 100); 0)
@Anonymous Try this...
% Target Revenue Surplus = DIVIDE ( CALCULATE ( SUM ( Facts[Vl_Suplementado] ) * 100; Facts[OrigemRecurso_DS] = "Surplus Financial" ); DIVIDE ( SUM ( Facts[Vl_ReceitaPrevista] ); 100; 0 ); 0 )
works however when the numeric value is represented is bringing more decimal places
with a filter
without filter
@Anonymous Try this... let me know if this works
% Target Revenue Surplus = DIVIDE ( CALCULATE ( SUM ( Facts[Vl_Suplementado] ); Facts[OrigemRecurso_DS] = "Surplus Financial" ); SUM ( Facts[Vl_ReceitaPrevista] ); 0 )
User | Count |
---|---|
65 | |
60 | |
60 | |
53 | |
27 |
User | Count |
---|---|
181 | |
88 | |
70 | |
48 | |
46 |