Reputation: 131
Daily Reimbursement Rates =
CALCULATE (
CONCATENATEX (
VALUES ( f_Census[DailyReimbursement] ),
FORMAT ( f_Census[DailyReimbursement], "$0.00" ),
", "
)
)
Upvotes: 0
Views: 50
Reputation: 1335
It will take all values in [DailyReimbursment] format it so that the value is in USD with 2 decimals and concatenate them with ", " in-between.
Table:
Measure:
Rate =
CALCULATE(
CONCATENATEX(
VALUES(Data[Value]);
FORMAT('Data'[Value]; "$0.00");
", "
)
)
Result:
Read more about CONCATENATEX here: MicrosoftDocs
Upvotes: 1