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,
Actually I'm trying to calculate the measure with foloowing formula but it is giving me error "The SUM function only accepts a column reference as an argument."
Fomula -
''' EXP(SUM(LN(1 + Query1[FundReturn]) * 1))'''
DAX Syntax -
Can anybody please help me in this!! Thanks
Solved! Go to Solution.
Try sumx
Expost_CumRet = CALCULATE( EXP(SUMx(Query1,LN(1 + Query1[FundReturn]) * 1)), FILTER(ALLSELECTED(Query1), Query1[Index.1]<=Max(Query1[Index.1]) )
Try sumx
Expost_CumRet = CALCULATE( EXP(SUMx(Query1,LN(1 + Query1[FundReturn]) * 1)), FILTER(ALLSELECTED(Query1), Query1[Index.1]<=Max(Query1[Index.1]) )