The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi, I have a problem in my metrics work that I can't figure out, I need your help. 🙏
I have 3 different tables:
Subscriptions: in this I made an IsActiveSubscription metric by status, which is 1 if it is active or 0 if it is not active.
Bookings: in this one I did the same for IsActiveBooking by status, which is 1 if it is active and 0 if it is not active.
Vehicles: which are active vehicles with a metric that is IsFreeOrUnpublished, which is 1 if active and 0 if not.
Now I need to be able to count how many vehicles have 1 regardless of whether it is booking, subscription or active vehicle, these are related by the license plate and I need it to take into account the calendar that was created as a table within the BI.
Solved! Go to Solution.
Hi @Syndicate_Admin -create a measure that checks the status of vehicles across the three tables (Subscriptions, Bookings, and Vehicles) and counts how many vehicles have at least one active status (either active subscription, active booking, or are free/unpublished).
Create a measure checks if the subscription status is active
IsActiveSubscription =
IF (
SELECTEDVALUE(Subscriptions[Status]) = "Active",
1,
0
)
This measure checks if the booking status is active
IsActiveBooking =
IF (
SELECTEDVALUE(Bookings[Status]) = "Active",
1,
0
)
measure checks if the vehicle status is active or free/unpublished
IsFreeOrUnpublished =
IF (
SELECTEDVALUE(Vehicles[Status]) = "Active" || SELECTEDVALUE(Vehicles[Status]) = "Free/Unpublished",
1,
0
)
create another measure counts vehicles where any of the three measures return 1.
CountActiveVehicles =
CALCULATE (
COUNTROWS ( Vehicles ),
FILTER (
Vehicles,
[IsFreeOrUnpublished] = 1 ||
CALCULATE ( [IsActiveSubscription], ALLEXCEPT(Subscriptions, Subscriptions[License Plate]) ) = 1 ||
CALCULATE ( [IsActiveBooking], ALLEXCEPT(Bookings, Bookings[License Plate]) ) = 1
)
)
Hope it helps
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hi @Syndicate_Admin -create a measure that checks the status of vehicles across the three tables (Subscriptions, Bookings, and Vehicles) and counts how many vehicles have at least one active status (either active subscription, active booking, or are free/unpublished).
Create a measure checks if the subscription status is active
IsActiveSubscription =
IF (
SELECTEDVALUE(Subscriptions[Status]) = "Active",
1,
0
)
This measure checks if the booking status is active
IsActiveBooking =
IF (
SELECTEDVALUE(Bookings[Status]) = "Active",
1,
0
)
measure checks if the vehicle status is active or free/unpublished
IsFreeOrUnpublished =
IF (
SELECTEDVALUE(Vehicles[Status]) = "Active" || SELECTEDVALUE(Vehicles[Status]) = "Free/Unpublished",
1,
0
)
create another measure counts vehicles where any of the three measures return 1.
CountActiveVehicles =
CALCULATE (
COUNTROWS ( Vehicles ),
FILTER (
Vehicles,
[IsFreeOrUnpublished] = 1 ||
CALCULATE ( [IsActiveSubscription], ALLEXCEPT(Subscriptions, Subscriptions[License Plate]) ) = 1 ||
CALCULATE ( [IsActiveBooking], ALLEXCEPT(Bookings, Bookings[License Plate]) ) = 1
)
)
Hope it helps
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
80 | |
78 | |
43 | |
37 |
User | Count |
---|---|
157 | |
112 | |
64 | |
60 | |
54 |