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.
Solved! Go to Solution.
Hi @Kosenurm ,
Create a measure use count() function to get the count value.
measure = count('Table'[column])*max('Table'[£])
Best Regards,
Jay
Hi @Kosenurm ,
Create a measure use count() function to get the count value.
measure = count('Table'[column])*max('Table'[£])
Best Regards,
Jay
@Kosenurm , In a new measure
= count(Table[column]) *10