Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
I have a table like this:
I need to get a table with just the last month information. So in this example, it would be dates just since 26/11/2022.
I have tried
Dummy tables:
https://drive.google.com/drive/folders/10nBzXYPfSuO87Sjl4_BkOdC2kVxQuDai?usp=share_link
Anyone could help me with this DAX expression? Thanks in advance!
Solved! Go to Solution.
hi @Laocsulak
try to write the table like this:
Date_Goal =
VAR _maxdate = EDATE( MAX(TableName[Date]), -1) +1
RETURN
CALCULATETABLE(
TableName,
TableName[Date]<=_maxdate
)
hi @Laocsulak
try to write the table like this:
Date_Goal =
VAR _maxdate = EDATE( MAX(TableName[Date]), -1) +1
RETURN
CALCULATETABLE(
TableName,
TableName[Date]<=_maxdate
)
Thanks! It solved the problem, changing the last inequality, using >= instead of <=.
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.