Forum Discussion
miinseon
Helper I
2 years agoline chart and trend chart between two dates
Hi all 🙂 I created a line chart and a metrics chart where values change based on two selected dates. For the two dates, I created two from & to tables with columns for each. Then I created a me...
- 2 years ago
Hi,
Please check the below image and the attached pbix file.
Thank you.
Jihwan_Kim
Super User
2 years agoHi,
Please try something like below.
ratio =
VAR _Alpha =
DIVIDE ( ( [@_trend_cnt] - [@_trend_cnt_pm] ), [@_trend_cnt_pm] )
VAR _Beta =
ABS ( _Alpha )
RETURN
IF (
NOT ISBLANK ( _Alpha ),
IF (
_Alpha > 0,
FORMAT ( _Beta, "â–² #,##0.0%" ),
FORMAT ( _Beta, "â–¼ #,##0.0%" )
)
)
miinseon
Helper I
2 years agoit works!!
I couldn’t have done it without your help
really thank you 🙂