Excel Formula Help

Fuisdale2

Board Regular
Joined
Mar 28, 2017
Messages
57
Thank you for taking the time to read my post.

I have the below formula which works out if there changes between 2 worksheets which has the same data in the corresponding columns/cells.

For reference "MHL_Data" is from the Client and "SDB_Data" is the data export from our system.

The issue I have is that our "SDB_DATA" in one of the columns has the Data Stored as text and the corresponding column Data from the client has this in Number format.

Is there a way of amending the formula to read the data in our "SDB_Data" tab column as Number instead of the stored text without having to manually format the data in that column from Stored Text to Number?




=IF(MHL_Data!B2<>SDB_Data!C6, "MHL TAB:"&MHL_Data!B2&" vs SDB TAB:"&SDB_Data!C6, "")
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
If you have numbers entered as Text, one way to coerce them to numeric value is to perform a simple mathematical computation on them, like adding zero or multiplying by one, i.e.
Code:
[COLOR=#333333]=IF(MHL_Data!B2<>[/COLOR][COLOR=#ff0000](SDB_Data!C6 + 0)[/COLOR][COLOR=#333333],...[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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