Forum Discussion
oswaldosborne
3 years agoNew Member
Custom Data Label DAX
Hi - apologies if this is a very simple solution. I'm trying to take advantage of the relatively new "custom label" option in the stacked bar chart visual. I would like the label to include the value...
- 3 years ago
oswaldosborne , Make sure you are using measure not column
SUM(Proj_LabourBudgetWeeks[Resourced_Days]) & " - " & Maxx(Proj_LabourBudgetWeeks, RELATED(Proj_Projects[Project_NameShort])) & "... (PL:" & Maxx(Proj_LabourBudgetWeeks,RELATED(Proj_Projects[Project_Manager_FirstName])) & "_PD:" & Maxx(Proj_LabourBudgetWeeks,RELATED(Proj_Projects[Project_Director_FirstName])) &")"
oswaldosborne
3 years agoNew Member
absolute lifesaver, thank you so much.