Forum Discussion

Queen_Geek's avatar
Queen_Geek
Helper I
6 years ago
Solved

excel to DAX formula

My data is all in columns on the same table-no relationships needed.  I need to find the % of projects that have lessons.  The screenshot is the excel version of the data output.  The excel formula i...
  • Queen_Geek's avatar
    Queen_Geek
    6 years ago

    I figured it out on my own.  The answer was simply  

     
    =

    DIVIDE(Counta('Table1'[Startup]), COUNTA('Table1'[Project]))
     
    .