Hi all,
Very new to PowerBI, would like to know how can i get the % of $Confirmed based on $confirm/Total.
Notice that it is split by countries and months as well.
Here is a screenshot. Appreciate all your help, very new to PowerBI here
@tranceclear do you have two separate tables for confirmed and total if yes then what is the relationship between these two tables. If there is 1:1 relationship try below measure
Measure = DIVIDE(SUM(Confirm[Jan]),SUM(Total[Jan]),0)