Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Existing Dataset
DimTable
FactSales
Based on FactSales.LatestMonth='Y', we need to Flag the calculated column CY_LY_Flag ="Yes" or "No" for the below two condition.
Get the LatestMonth='Y' and mark that as "Yes"
same time Last year also needs to be flagged as "Yes"
remaining records should be "No"
Expected output: for CY_LY_Flag through Calculated Column
FactSales
BatchDate CY_LY_Flag
03/01/2021 Yes
02/01/2021 No
02/01/2021 No
02/01/2019 No
12/01/2019 No
11/01/2019 No
03/01/2020 Yes
Solved! Go to Solution.
Hi @sentsara ,
You can create a calculated column as below:
CY_LY_Flag =
VAR _maxdate =
CALCULATE ( MAX ( 'FactSales'[BatchDate] ), ALLSELECTED ( 'FactSales' ) )
RETURN
IF (
YEAR ( 'FactSales'[BatchDate] )
IN { YEAR ( _maxdate ), YEAR ( _maxdate ) - 1 }
&& MONTH ( 'FactSales'[BatchDate] ) = MONTH ( _maxdate ),
"Yes",
"No"
)
Best Regards
Please do yourself a favour and do not create unnecessary columns in fact tables. The column you're after should belong to DimTable, not your to fact table. Also, latestmonth should be moved to DimTable.
Hi @sentsara
You can try following DAX for a calculated column
CY_LY_Flag =
var years = {YEAR(TODAY()), YEAR(TODAY())-1 }
RETURN
IF(MONTH(FactSales[BathDate]) = MONTH(TODAY()) && YEAR(FactSales[BatchDate]) IN years,"Yes","No")
Regards,
Sayali
If this post helps, then please consider Accept it as the solution to help others find it more quickly
Proud to be a Super User!
Thanks for your quick reply on this.
we need to consider based on the LatestMonth value 'Y' or 'N' as well.
Hi @sentsara ,
You can create a calculated column as below:
CY_LY_Flag =
VAR _maxdate =
CALCULATE ( MAX ( 'FactSales'[BatchDate] ), ALLSELECTED ( 'FactSales' ) )
RETURN
IF (
YEAR ( 'FactSales'[BatchDate] )
IN { YEAR ( _maxdate ), YEAR ( _maxdate ) - 1 }
&& MONTH ( 'FactSales'[BatchDate] ) = MONTH ( _maxdate ),
"Yes",
"No"
)
Best Regards
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
76 | |
53 | |
37 | |
31 |
User | Count |
---|---|
101 | |
56 | |
51 | |
45 | |
40 |