Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Good afternoon,
I have a trouble converting a measure that I created, into a column. Below is the ilustration of the issue:
I successfully created a measure that calculates the mode for each product - so it shows that the mode for Apples in 2021 is 5.96, but I need it as a column, as shown in the screenshot.
The column should pick up the Mode amount for each product and sort it per year. Could somebody help me out with this? I read that a solution might be to create a virtual table from the Mode measure and then use lookup, but this sounds too complicated for someone with my skills.
Thank you very much in advance!
Kind regards,
B
Solved! Go to Solution.
Hi @ase
please try
=
VAR ItemYearTable =
CALCULATETABLE (
TableName,
ALLEXCEPT ( TableName, TableName[Item], TableName[Yea] )
)
VAR SummaryTable =
SUMMARIZE (
ItemYearTable,
TableName[price per unit],
"@cont", CALCULATE ( COUNTROWS ( TableName ) )
)
VAR MaxCount =
MAXX ( SummaryTable, [@count] )
RETURN
MAXX ( FILTER ( SummaryTable, [@count] = MaxCount ), TableName[price per unit] )
It works! Thank you very much for your time and effort!
Hi @ase
please try
=
VAR ItemYearTable =
CALCULATETABLE (
TableName,
ALLEXCEPT ( TableName, TableName[Item], TableName[Yea] )
)
VAR SummaryTable =
SUMMARIZE (
ItemYearTable,
TableName[price per unit],
"@cont", CALCULATE ( COUNTROWS ( TableName ) )
)
VAR MaxCount =
MAXX ( SummaryTable, [@count] )
RETURN
MAXX ( FILTER ( SummaryTable, [@count] = MaxCount ), TableName[price per unit] )
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |