The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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