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 September 15. Request your voucher.
i have beow data and i need to supress the duplicate values to a single one
current format
Expected format
Solved! Go to Solution.
Hi @Anonymous ,
Create a calculated column as below.
Column =
var min_date = CALCULATE(MIN('Table'[date]),ALLEXCEPT('Table','Table'[company name]))
return
IF('Table'[date]=min_date,'Table'[company name],BLANK())
Best Regards,
Jay
Hi, I want the same but reverse. I have a single value but I want to duplicate it
Hi @Anonymous ,
Create a calculated column as below.
Column =
var min_date = CALCULATE(MIN('Table'[date]),ALLEXCEPT('Table','Table'[company name]))
return
IF('Table'[date]=min_date,'Table'[company name],BLANK())
Best Regards,
Jay
@Anonymous , You can display in a matrix with the stepped layout https://docs.microsoft.com/en-us/power-bi/visuals/desktop-matrix-visual#stepped-layout-with-matrix-visuals
User | Count |
---|---|
69 | |
65 | |
63 | |
48 | |
28 |
User | Count |
---|---|
112 | |
82 | |
66 | |
48 | |
43 |