i'm finding the way to change the format of number on trend by vba.
i have try
Code:
Sub format_trend()
Dim trend_format As TrendFormat
Set trend_format = ThisDisplay.Trend.GetFormat
trend_format.showvalue = true /false
ThisDisplay.Trend.SetFormat trend_format
End Sub
but it only show and hide value not change the format of value.
could you help me.