Forum Discussion
Most popular from Dataverse
- 4 years ago
Hi Kosenurm
Step1: connect to dataverse in Power BI Desktop,
Connect to Dataverse from Power BI Desktop
Step2: After get data from dataverse, create measures like bellow( I create a sample for your reference, see file attached bellow)
count = COUNT('Table'[desk])MaxCount = VAR _count = MAXX ( 'Table', [count] ) VAR _name = CALCULATE ( MAX ( 'Table'[desk] ), FILTER ( 'Table', [count] = _count ) ) RETURN _name & UNICHAR ( 10 ) & _countBest Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi Kosenurm
Step1: connect to dataverse in Power BI Desktop,
Connect to Dataverse from Power BI Desktop
Step2: After get data from dataverse, create measures like bellow( I create a sample for your reference, see file attached bellow)
count = COUNT('Table'[desk])MaxCount =
VAR _count =
MAXX ( 'Table', [count] )
VAR _name =
CALCULATE ( MAX ( 'Table'[desk] ), FILTER ( 'Table', [count] = _count ) )
RETURN
_name & UNICHAR ( 10 ) & _count
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.