Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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 overwhelmed. They're using an excel sheet in a team to track dates and spending a lot of time answering update queries from the volunteer unit managers around the country as they can't access the master data.
We want to provide a PowerBI dashboard managers can search by person to get an update so they can focus on deploying the vaccinators. Ideally we want fully deployable column to be rule based and go true when all dates are entered but i'll be honest i'm struggling to identify a data validation rule that will work as i'm not an excel ninja.
Any advice would be really welcome as we've got about 30000 people to come through and admin is killer!
Person No | First Name | Surname | Role | Region | District | Area | Unit | Fully Deployable | SJA E-learning | Legal Aspects | Vacc Storage | Vacc Admin | Core Knowledge | mRNA | Astra Zeneca | |
12345 | Joe | Bloggs | Volunteer Vaccinator | joe.bloggs@sjs.org.uk | North | Greater Manchester | North Virtual | GM-10 | TRUE | 12/01/21 | 15/01/21 | 13/01/21 |
Solved! Go to Solution.
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,
Proud to be a Super User!
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,
Proud to be a Super User!
That's fantastic thank you! Any tips on summary count dates vs blanks for an overview? I.e. for all the vaccinators how many have a date against it and how many are blank. As it's dates and not a numerical 1/0 it's causing me some trouble when i'm trying to use the donut. As an example i've currently got it in true/false which i can now flip to dates (thanks!)
Hi @RobJ1187,
Not sure I understand the requirement, but you could use the countrows() function in conjunction with filtering to create measures that count rows where dates exist
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
113 | |
74 | |
65 | |
46 |