Reputation: 13
Im having a problem with Power BI where i put the values in a table but in the total it doesnt show the sum of all the items.
Thats how it's showing in the total of the table:
I tried to adjust with two formulas but it didn't work and it continues to only show the maximum value that was reached :(
first formula:
second:
Does anyone know how I can fix this?
Upvotes: 1
Views: 49
Reputation: 16908
Can you please try a Measure like-
measure=
IF(
HASONEVALUE(your_table_name[HostName]),
your MAX calculation here,
your TOTAL calculation here
)
Upvotes: 1