Forum Discussion
dinosainsburys
2 years agoHelper I
How do I remove duplicate values within a specific category of rows
I ingest data from the Dynatrace API in relation to the drive utilisation of servers. In order to get it to a readable state, I had to Unpivot columns as it was presented like this when it came throu...
- Anonymous2 years ago
Hi dinosainsburys ,
According to your description, in order to make the final generated data more meaningful, you can try to use the average value, maximum value(Max), minimum value(Min) as a measure for a certain day, and you can do this by modifying the parameter referenced after "Total Value". Here is an example of an average valueTotal Value by Date = CALCULATETABLE( ADDCOLUMNS( DISTINCT('Table'[RESULTS.DATE]), "Computer",MAX('Table'[Computer]), "Total Value", CALCULATE(AVERAGE('Table'[RESULTS.VALUE]),ALLEXCEPT('Table','Table'[RESULTS.DATE])) ), 'Table'[RESULTS.DATE] = 'Table'[RESULTS.DATE] )Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
AUDISU
2 years agoResolver III
Hi dinosainsburys ,
Create a calender table and create relationship between calender table and this table. Then use calender date column to visual.
If not try to change aggrigation type to First in Result.Date column in your visual table.
Thanks