Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Dates help

Hello Experts,

 

I am beginner to Power BI and need help on dates. My requirement is like below. I have dates columns and need percentage column based on dates populated / available in column.

Please help.

 

column1column2column3column4column5column6requirement
AB7/5/20217/15/20217/31/20218/5/2021100% ( I need here 100% if all dates are populated)
CD7/5/20217/15/20217/31/2021 75% (I need here 75% if column 3 to column 5 are populated)
EF7/5/20217/15/2021  50% (I need here 50% if column 3 and column 4 are populated)
  • Anonymous Maybe:

    Column = 
        VAR __Table = { [Column3], [Column4], [Column5], [Column6] }
    RETURN
        COUNTROWS(FILTER(__Table,[Value]<>BLANK()))/4

    Might consider unpivoting your date columns.

2 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    Anonymous Maybe:

    Column = 
        VAR __Table = { [Column3], [Column4], [Column5], [Column6] }
    RETURN
        COUNTROWS(FILTER(__Table,[Value]<>BLANK()))/4

    Might consider unpivoting your date columns.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thank you so much Greg.