Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi
I have 3 fields Period, Bucket, Ecmployee code.
Scenario: here 2 months period, it is compare with previous Month.
Aug-Red (102)
Sep-Amber (102) based on Employee code equal to then display Employee count in below output. and both period green to green it is come ot required.
Period Bucket Employee Code
Aug-2018 Red 102
Aug-2018 Amber 105
Aug-2018 Green 223
Period Bucket Employee Code
Sep-2018 Amber 102
Sep-2018 Green 105
Sep-2018 Red 223
output:
when select Sept Period filter: Red to Amber, Amber to green, Red to green
Aug - Sept- Employee Code - equal -- display Count.
How to create a cal?
Solved! Go to Solution.
1.add column "netxMonth" in table
nextMonth = DATEADD('table'[Period];1;MONTH)2. lookupvalue and concat
bucketNexMonth = IF(ISBLANK('table'[nextMonth]);BLANK();'table'[Bucket]&" to "&LOOKUPVALUE('table'[Bucket];'table'[Employee Code];'table'[Employee Code];'table'[Period];'table'[nextMonth]))try this
1.add column "netxMonth" in table
nextMonth = DATEADD('table'[Period];1;MONTH)2. lookupvalue and concat
bucketNexMonth = IF(ISBLANK('table'[nextMonth]);BLANK();'table'[Bucket]&" to "&LOOKUPVALUE('table'[Bucket];'table'[Employee Code];'table'[Employee Code];'table'[Period];'table'[nextMonth]))try this
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!