I have a custom financial report structure with measures for each entry. One of the issues I'm running in to is I can't update some of the fields, and for the life of me I cannot figure out why. I can update other fields just fine. See below for screen shots.
Individual DAX measures:
Working:
Subscription = SUMX(
FILTER(
'Consolidated',
'Consolidated'[accountNumber]IN {410000}
),
'Consolidated'[TotalExchangeRateAmount]
)
Not working:
EBITDA Interest = SUMX(
FILTER(
'Consolidated',
'Consolidated'[accountNumber] IN {730000, 740000, 740010}
),
'Consolidated'[TotalExchangeRateAmount]
)
For the Structure of the Report:
This gets applied to the Matrix visualization value field
Before and after changing the DAX to one of the non-working value fields:
When trying to apply the DAX measure to the EBITDA Interest I just get blanks across all:
I verified the table data actually has data in the TotalExchangeRateAmount column, and that there are corresponding dates for all the months, or at least some of the months. Just not sure what I'm doing wrong. I can provide additional information if needed.
The values were showing up wonky when on the matrix visualization, even though I limited the amount of decimal values. I went through and did the FORMAT and it corrected it. Not really sure why.
Greg_Deckler Any thoughts on this? I can provide additional information as needed. TL;DR, have a custom formatted Matrix visualization with DAX measures for each entry, most of them work, some of them do not. Checked formatting, checked values in corresponding table, all seems to look good, but cannot get values to populate in any of the blank rows now.