I've tried add calculated column to my table in power bi. Now I have two columns:
Num_of_occurence=CALCULATE(COUNT(Loans[ID]))
which calculates how may times specific loan occurs in this table
Num_of_all_loans=COUNTROWS(Loans)
calculation of number of all loans in table. What I've tried to add is calculated column which calculated percentage
Percent=DIVIDE([Num_of_occurence];[Num_of_all_loans])
The proble is I got circular dependency error. Any idea how to solve it?