Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I created a measure if actual isblank, then use LBE. but the total is incorrect.
example:
Month Actual LBE LBEorAct CumAct CumLBEorAct
Jan 10 20 10 10 10
Feb 20 20
Mar 20 20
Apr 20 20
Total 10 80 20===> this should be 70
tried, but didnt work. got the same result.
I have a table for actuals, another for LBE. all I want is a table to show LBEorActual
For example, if there is actual$ for Jan only, then Feb-Dec use LBE$. So I can have Full Year Forecast of Actual and LBE.
Month Actual LBE LBEorAct CumAct CumLBEorAct
Jan 10 20 10 10 10
Feb 20 20
Mar 20 20
Apr 20 20
Total 10 80 20===> this should be 70
Can you please share your PBI file?
You are having an issue with the total because the formula is not accounting for the context of the calculation.
The missing part here is the aggregation over time so you may need TOTALYTD() :
LBEorACT =
IF(
ISBLANK(SUM(table1[Actual])),
TOTALYTD(SUM(table2[LBE]), 'table3'[Date]),
TOTALYTD(SUM(table1[Actual]), 'table3'[Date])
)
Can you also share your PBI file to have more info about your situation ?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
217 | |
89 | |
82 | |
66 | |
57 |