The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi all,
I think this is a fairly simple one but I must have something slightly off.... or maybe I'm way off!!
I'm looking to create a hit rate... I have my bids submitted number (which only includes bids with a submitted date) but would like to create a measure of successful bids submitted.
Successful bids = Pipeline Status = Preferred Bidder OR Contract Award OR Status = Won.
The below isnt working....
Opportunity Name | Bid submitted date | Pipeline Status | Status |
Opportunity 1 | 17/01/2022 | Preferred Bidder | Open |
Opportunity 2 | 18/01/2022 | Contract Award | Won |
Opportunity 3 | Preferred Bidder | Open | |
Opportunity 4 | 19/01/2022 | Bid Submitted | Open |
Any help much appreciated as always 🙂
Solved! Go to Solution.
Hi @eilidh3 ,
Did some edits based on tamerj1's formula.
No of Bids Successful =
COUNTROWS (
FILTER (
Opportunities,
Opportunities[Bid submitted date] <> BLANK ()
&& ( Opportunities[ID_Pipeline Reporting Status] = "Preferred Bidder"
|| Opportunities[ID_Pipeline Reporting Status] = "Contract Award"
|| Opportunities[Status] = "Won" )
)
)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @eilidh3 ,
Did some edits based on tamerj1's formula.
No of Bids Successful =
COUNTROWS (
FILTER (
Opportunities,
Opportunities[Bid submitted date] <> BLANK ()
&& ( Opportunities[ID_Pipeline Reporting Status] = "Preferred Bidder"
|| Opportunities[ID_Pipeline Reporting Status] = "Contract Award"
|| Opportunities[Status] = "Won" )
)
)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @eilidh3
your code assumes unique opportunity names therefore I assume the same. Please try
No of Bids Successful =
COUNTROWS (
FILTER (
Opportunities,
Opportunities[Bid submitted date] <> BLANK ()
&& OR (
Opportunities[ID_Pipeline Reporting Status] = "Preferred Bidder",
Opportunities[ID_Pipeline Reporting Status] = "Contract Award"
)
)
)
User | Count |
---|---|
14 | |
12 | |
7 | |
6 | |
5 |
User | Count |
---|---|
28 | |
18 | |
13 | |
7 | |
5 |