Forum Discussion
Need some help
- 4 years ago
Anonymous , If [% of new for] is a column
then new measure
Sumx(summarize(Table, Table[Date], Table[% of new for]) ,[% of new for])
or
Sumx(summarize(Table, Table[Date],"_1", max(Table[% of new for])) ,[% of new for])if this is a measure
Sumx(summarize(Table, Table[Date],"_1", maxX(Table, Table[% of new for])) ,[% of new for])
Anonymous , If [% of new for] is a column
then new measure
Sumx(summarize(Table, Table[Date], Table[% of new for]) ,[% of new for])
or
Sumx(summarize(Table, Table[Date],"_1", max(Table[% of new for])) ,[% of new for])
if this is a measure
Sumx(summarize(Table, Table[Date],"_1", maxX(Table, Table[% of new for])) ,[% of new for])
First one seems to work perfectly for me , i gladly thank you because i was searching for this kind of response for a long time . Have a good day and thank you one more time.