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.
Hi everyone,
I am trying to perform a function that allows me to accumulate the percentage, but not using the traditional method with DATESYTD, because it takes the amounts and not the results of the monthly percentages.
The idea is to create both measure 1, as well as measure 2, which is the one that accumulates.
I appreciate your help.
Solved! Go to Solution.
Hi @emadrigals104 ,
According to your description, here's my solution.
Create two measures.
Measure1 = DIVIDE(MAX('Table'[Value2]),MAX('Table'[Value1]))
Measure2 =
SUMX (
FILTER ( ALL ( 'Table' ), 'Table'[Date] <= MAX ( 'Table'[Date] ) ),
[Measure1]
)
Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @emadrigals104 ,
According to your description, here's my solution.
Create two measures.
Measure1 = DIVIDE(MAX('Table'[Value2]),MAX('Table'[Value1]))
Measure2 =
SUMX (
FILTER ( ALL ( 'Table' ), 'Table'[Date] <= MAX ( 'Table'[Date] ) ),
[Measure1]
)
Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.