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've got a calculated measure for a running total, but I'm trying to split it by [Value].
I want to say:
RT Type 1 = CALCULATE(SUM('Table'[Value]), FILTER(ALLSELECTED('Table'[DATE]), 'Table'[Date] <= 'MAX('Table'[Date])) && 'Table'[Type] = "1")
When I try this, it just gives me an error saying "Filter has been used in a True/False expression that is used as a table filter expression. This is not allowed."
I can't think of another solution. Thanks
Solved! Go to Solution.
Hi @Anonymous
please try
RT Type 1 =
CALCULATE (
SUM ( 'Table'[Value] ),
ALLSELECTED ( 'Table' ),
'Table'[Date] <= MAX ( 'Table'[Date] ),
'Table'[Type] = "1"
)
Hi @Anonymous
please try
RT Type 1 =
CALCULATE (
SUM ( 'Table'[Value] ),
ALLSELECTED ( 'Table' ),
'Table'[Date] <= MAX ( 'Table'[Date] ),
'Table'[Type] = "1"
)
Such an easy solution. Haha, thanks!
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |