cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Kosenurm
Regular Visitor

Showing cost per item in Dataverse table column

Hi, 

 

I have a Dataverse table which shows lists of entries. I have created a Datacard which displays the Count of all records in a particular column. 

 

What I want to then show is the Count multiplied by a specific value in £ ; would this be in a Datacard or in a text box? 

 

Thanks,

K.

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @Kosenurm ,

 

Create a measure use count() function to get the count value.

measure = count('Table'[column])*max('Table'[£])

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

Hi @Kosenurm ,

 

Create a measure use count() function to get the count value.

measure = count('Table'[column])*max('Table'[£])

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
amitchandak
Super User
Super User

@Kosenurm , In a new measure

= count(Table[column]) *10

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors