Help me regarding formula which i am going using

mebro

New Member
Joined
Jul 12, 2018
Messages
12
Hi All,

please help me regarding the below formula which I am using to validate the login credentials.
In below case, it's not checking for case sensitivity. it's allowing both(Let's take an example in the username range table I have name "Testing" and when I enter "testing" at B5 it's allowing). I do not have any option to upload the screenshot or file here.

IF(INDEX(UserTable,MATCH(B5,UserName,0),2)=B6,TRUE,FALSE)
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
See if this works:

=IF(INDEX(UserTable,MATCH(TRUE,INDEX(EXACT(B5,UserName),0),0),2)=B6,TRUE,FALSE)
 
Upvote 0
Hi Steve
Iam facing another issue, it is not showing false when it's not matched.its showing #N/A instead false
 
Upvote 0
Hello Steve,

I need to validate the same(case sensitivity check) with the UserTable column with the value in B6, Can you please help me on this below is the formula I am using, but I am not getting the correct value.

=IF(INDEX(UserTable,MATCH(TRUE,INDEX(EXACT(B5,UserName),0),0),2)= MATCH(TRUE,INDEX(EXACT(B6,UserTable),2),0),TRUE,FALSE)
 
Upvote 0

Forum statistics

Threads
1,215,154
Messages
6,123,327
Members
449,098
Latest member
thnirmitha

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