Using wildcards with formula

NadoDude

Board Regular
Joined
Jun 24, 2010
Messages
84
I am using the following formula:

=IF(AND($W5956="",$X5956=""),0,IF($Q5956="Deployment",0,IF(AND($P5956="",$N5956=""),0,IF(AND($P5956<>"",$P5956<$W5956),0,IF($P5956="",TODAY()-IF($N5956<$W5956,$W5956,$N5956),$P5956-IF($N5956<$W5956,$W5956,$N5956))))))

I tried to modify the second IF statement IF($Q5956="Deployment", to return a 0 if the $Q5956 starts with the word Deployment by adding an * after the word Deployment:

=IF(AND($W5956="",$X5956=""),0,IF($Q5956="Deployment*",0,IF(AND($P5956="",$N5956=""),0,IF(AND($P5956<>"",$P5956<$W5956),0,IF($P5956="",TODAY()-IF($N5956<$W5956,$W5956,$N5956),$P5956-IF($N5956<$W5956,$W5956,$N5956))))))

The first formula returns a 0, but the second formula does not. What am I missing?
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
In that context the * isn't recognised as a wildcard, try using LEFT function like

IF(LEFT($Q5956,10)="Deployment"......
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,666
Members
448,977
Latest member
moonlight6

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top