iosiflupis
New Member
- Joined
- Jan 26, 2022
- Messages
- 39
- Office Version
- 365
- Platform
- Windows
Hello all,
I have the following DAX Measure:
Total Deplaned Cargo =
VAR TotalDeplaned =
SUM(Cargo_Numbers[Ameriflight Deplaned]) +
SUM('Cargo_Numbers'[American Deplaned]) +
SUM('Cargo_Numbers'[Southwest Deplaned]) +
SUM('Cargo_Numbers'[United Deplaned])
RETURN
INT(TotalDeplaned)
When I put this in a Line Chart and add the Data labels none of the labels have the thousands comma separator. I have tried multiple ways to get the comma to show. I have tried formatting in the DAX, I have tried to format the underlying data in the table, and I have tried the Format tool and Data Label.
I even resorted to ChatGPT without any luck.
Does anyone know how I can do this while keeping the measure formatted for Whole Number?
Thank you,
Joseph
I have the following DAX Measure:
Total Deplaned Cargo =
VAR TotalDeplaned =
SUM(Cargo_Numbers[Ameriflight Deplaned]) +
SUM('Cargo_Numbers'[American Deplaned]) +
SUM('Cargo_Numbers'[Southwest Deplaned]) +
SUM('Cargo_Numbers'[United Deplaned])
RETURN
INT(TotalDeplaned)
When I put this in a Line Chart and add the Data labels none of the labels have the thousands comma separator. I have tried multiple ways to get the comma to show. I have tried formatting in the DAX, I have tried to format the underlying data in the table, and I have tried the Format tool and Data Label.
I even resorted to ChatGPT without any luck.
Does anyone know how I can do this while keeping the measure formatted for Whole Number?
Thank you,
Joseph