You can get rid of the label-column overlap issue by setting a dynamic Y-axis value to be x% more than the max Y value. Y-axis Max = --Computes the Y Axis with a set % VAR _PctIncrease = 15 VAR _IncreaseFactor = 1 + (_PctIncrease / 100) VAR _HighestCount = MAXX ( --Determine visual MAX value ALLSELECTED ( 'Calendar'[Date] ), --Over the X-axis [Your column metric] --On this measure ) VAR _Result = _HighestCount * _IncreaseFactor --Apply the increase % RETURN _Result
Thank you! This was really good. I will be watching more of your tutorials.
You can get rid of the label-column overlap issue by setting a dynamic Y-axis value to be x% more than the max Y value.
Y-axis Max = --Computes the Y Axis with a set %
VAR _PctIncrease = 15
VAR _IncreaseFactor = 1 + (_PctIncrease / 100)
VAR _HighestCount =
MAXX ( --Determine visual MAX value
ALLSELECTED ( 'Calendar'[Date] ), --Over the X-axis
[Your column metric] --On this measure
)
VAR _Result =
_HighestCount * _IncreaseFactor --Apply the increase %
RETURN
_Result
Best tutorial
Excellent tutorial Thanks
Great work man, keep going