The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I need to create a custom header in powerBI.
When the user selects for example Sniority banking M+3, it will show M(1), M+1, M+2, M+3 which are <= choice of the user:
I put a pbix file here https://drive.google.com/file/d/1DjzyP3qGLxCd93X_G77EeVWhe2nEqVVK/view?usp=drivesdk
Solved! Go to Solution.
Hi @Anonymous ,
I just updated your report file with the below steps, you can get it from this link.
1. Create a new calculated table with ID field
Table = VALUES('Seniority banking'[id])
2. Create a measure and create a slicer with the field ID from new table
Measure 3 = IF(MAX('Seniority banking'[id])<=SELECTEDVALUE('Table'[id]),1,0)
3. Apply the filter with Measure 3=1
Best Regards
Rena
Hi @Anonymous ,
I just updated your report file with the below steps, you can get it from this link.
1. Create a new calculated table with ID field
Table = VALUES('Seniority banking'[id])
2. Create a measure and create a slicer with the field ID from new table
Measure 3 = IF(MAX('Seniority banking'[id])<=SELECTEDVALUE('Table'[id]),1,0)
3. Apply the filter with Measure 3=1
Best Regards
Rena
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |