Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi All
I have a Table , it can display YTD and LYTD sales and Sales Vari % :-
When itry to plot the chart it can display YTD and LYTD :-
Now i try to plot the Sales Vari % only , it does not display . Can some one advise me where go wrong ?
Paul Yeo
Solved! Go to Solution.
Hi,
In the Source, delete the Source_temp column. Revise the Sales_YTD measure to:
Sales LYTD =
var _max = date(year(today())-1,month(today()),day(today()))
return
TOTALYTD([SALES_],dateadd('DATE'[Date],-1,year),'DATE'[Date]<=_max)
Hi
Hi,
In the Source, delete the Source_temp column. Revise the Sales_YTD measure to:
Sales LYTD =
var _max = date(year(today())-1,month(today()),day(today()))
return
TOTALYTD([SALES_],dateadd('DATE'[Date],-1,year),'DATE'[Date]<=_max)
You are welcome.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.