Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi, I am trying to calculate Mode from existing queries
Example:
| product | price |
| a123 | 1.2 |
| a235 | 1.5 |
| a123 | 1.2 |
| a123 | 1.2 |
| a123 | 1.3 |
| a126 | 0.3 |
i am trying to calculate the mode price for produce a123 - in this case it would be 1.2
This table is in another query, and I was thinking to create a separate query which would have my mode calculation result below:
| product | price (mode) |
| a123 | 1.2 |
| a126 | 0.3 |
| a235 | 1.5 |
Any suggestions would be incredibly helpful! Thanks!
Solved! Go to Solution.
@jaclynt8
Note >> here is Two Solutions but useful First soutions bcoz second Solution in use duplicates table and it is Load our dataset .
>> Right Click on Product Column >> Remove Duplicates >> Get Your Out-Put.
***************************************** Second Solutions ***********************************
>>Create Product Dulicates table >> Go to Dulicates table Home tab ribbon Advance Editor >> clear all M code and>>Add Below M Code.
let
Source = Product,
#"Grouped Rows" = Table.Group(Source,"Product",{"Price", each List.Mode([Price])})
in
#"Grouped Rows"
here you get your expected result.
If this post helps, please consider accept as solution to help other members find it more quickly.
@jaclynt8
Note >> here is Two Solutions but useful First soutions bcoz second Solution in use duplicates table and it is Load our dataset .
>> Right Click on Product Column >> Remove Duplicates >> Get Your Out-Put.
***************************************** Second Solutions ***********************************
>>Create Product Dulicates table >> Go to Dulicates table Home tab ribbon Advance Editor >> clear all M code and>>Add Below M Code.
let
Source = Product,
#"Grouped Rows" = Table.Group(Source,"Product",{"Price", each List.Mode([Price])})
in
#"Grouped Rows"
here you get your expected result.
If this post helps, please consider accept as solution to help other members find it more quickly.
Thank you! I used the second solution and it worked! I was wondering what I could do if I had two values I needed to create mode out of.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |