Forum Discussion

RobJ1187's avatar
RobJ1187
New Member
5 years ago
Solved

Training tracker (Covid responders please help!)

First time posting so bear with me. We're currently pulling together completion dates for all the steps needed to deploy vaccinators to support the health service and our admin team is completely ove...
  • richbenmintz's avatar
    5 years ago

    Hi RobJ1187 ,

    You could create a calculated column in PBI using the following formula

    Deployable= if([SJA E-learning]<> BLANK() && [Legal Aspects]<>BLANK()&&[Vacc Storage]<>BLANK()&&[Vacc Admin]<>BLANK()&&[Core Knowledge]<>BLANK()&&[mRNA]<>BLANK()&&[Astra Zeneca]<>BLANK(), TRUE(), FALSE()) 

     or a measure like

    Deployable Measure = 
    if(HASONEVALUE('Table'[Person No]), 
        if(Values('Table'[SJA E-learning])<> BLANK() 
        && Values('Table'[Legal Aspects])<>BLANK()
        && Values('Table'[Vacc Storage])<>BLANK()
        && Values('Table'[Vacc Admin])<>BLANK()
        && Values('Table'[Core Knowledge])<>BLANK()
        && Values('Table'[mRNA])<>BLANK()
        && Values('Table'[Astra Zeneca])<>BLANK(), TRUE(), FALSE())  )

    Hope this helps,