This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi!
I'm currently looking for a way to use the Filter function within a Switch formula. Currently I use the following one:
Status Name Complete =
SWITCH('Main Jira Info Prod'[Status Name], " Contact Candidate","Contacted",
" New Candidate","Contacted",
" CV Review","Contacted",
" Pre-screen Decision","Screening",
" New Interview","HR Interview",
" HR Interview","HR Interview",
" Requested for Technical Interview","Technical Interview",
" Technical Interview","Technical Interview",
" Technical Interview finished","Technical Inteview",
" Requested for Final Interview","Final Interview",
" Final Interview","Final Interview",
" Final Interview finished","Final Interview",
" Interview Decision","Final Interview",
" New offer","Offer",
" Approved offer","Offer",
" Offer in progress","Offer",
" Redo Offer", "Offer",
" Offer Done", "Hires",
BLANK()
)
The problem I've been having is that on the last one "Offer Done" I need to specify that the column has the value 'Offer Done' but also that the column 'Offer Resolution' has the value 'Accepted' so that it switches to 'Hires' and if the value is 'Declined' it should stay as 'Offer.
Any suggestions?.
Best,
Solved! Go to Solution.
@fernandoC , Change it Switch True, But that means you have given conditions example
Status Name Complete =
SWITCH( true () ,
'Main Jira Info Prod'[Status Name]= " Contact Candidate","Contacted",
'Main Jira Info Prod'[Status Name]= " New Candidate","Contacted",
'Main Jira Info Prod'[Status Name]= " CV Review","Contacted",
'Main Jira Info Prod'[Status Name]= " Pre-screen Decision","Screening",
'Main Jira Info Prod'[Status Name]= " New Interview","HR Interview",
'Main Jira Info Prod'[Status Name]= " HR Interview","HR Interview",
'Main Jira Info Prod'[Status Name]= " Requested for Technical Interview","Technical Interview",
'Main Jira Info Prod'[Status Name]= " Technical Interview","Technical Interview",
'Main Jira Info Prod'[Status Name]= " Technical Interview finished","Technical Inteview",
'Main Jira Info Prod'[Status Name]= " Requested for Final Interview","Final Interview",
'Main Jira Info Prod'[Status Name]= " Final Interview","Final Interview",
'Main Jira Info Prod'[Status Name]= " Final Interview finished","Final Interview",
'Main Jira Info Prod'[Status Name]= " Interview Decision","Final Interview",
'Main Jira Info Prod'[Status Name]= " New offer","Offer",
'Main Jira Info Prod'[Status Name]= " Approved offer","Offer",
'Main Jira Info Prod'[Status Name]= " Offer in progress","Offer",
'Main Jira Info Prod'[Status Name]= " Redo Offer", "Offer",
'Main Jira Info Prod'[Status Name]= " Offer Done" && 'Main Jira Info Prod'[Offer Resolution] = "Accepted", "Hires" ,
BLANK()
)
@fernandoC , Change it Switch True, But that means you have given conditions example
Status Name Complete =
SWITCH( true () ,
'Main Jira Info Prod'[Status Name]= " Contact Candidate","Contacted",
'Main Jira Info Prod'[Status Name]= " New Candidate","Contacted",
'Main Jira Info Prod'[Status Name]= " CV Review","Contacted",
'Main Jira Info Prod'[Status Name]= " Pre-screen Decision","Screening",
'Main Jira Info Prod'[Status Name]= " New Interview","HR Interview",
'Main Jira Info Prod'[Status Name]= " HR Interview","HR Interview",
'Main Jira Info Prod'[Status Name]= " Requested for Technical Interview","Technical Interview",
'Main Jira Info Prod'[Status Name]= " Technical Interview","Technical Interview",
'Main Jira Info Prod'[Status Name]= " Technical Interview finished","Technical Inteview",
'Main Jira Info Prod'[Status Name]= " Requested for Final Interview","Final Interview",
'Main Jira Info Prod'[Status Name]= " Final Interview","Final Interview",
'Main Jira Info Prod'[Status Name]= " Final Interview finished","Final Interview",
'Main Jira Info Prod'[Status Name]= " Interview Decision","Final Interview",
'Main Jira Info Prod'[Status Name]= " New offer","Offer",
'Main Jira Info Prod'[Status Name]= " Approved offer","Offer",
'Main Jira Info Prod'[Status Name]= " Offer in progress","Offer",
'Main Jira Info Prod'[Status Name]= " Redo Offer", "Offer",
'Main Jira Info Prod'[Status Name]= " Offer Done" && 'Main Jira Info Prod'[Offer Resolution] = "Accepted", "Hires" ,
BLANK()
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 25 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 28 | |
| 23 | |
| 23 |