Need Help Fixing Incorrect Data

dmontez

New Member
Joined
Nov 17, 2008
Messages
25
I download info from my local real estate MLS every week in order to produce reports.

The data has many errors in the "Original List Price" field.

I need a quick way of correcting the prices if they are more that 200% larger that the "Current List Price".

All of the "Original List Prices" are in Column D and "Current List Prices" in Column E.

So if D is 200% greater that E replace D with E.

Thanks!!!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Best way to do this is to create a new column and use a formula to get the correct price

Code:
=if(d1>2*e1, e1, d1)

So if the number in d1 is greater than 2 x e1, it returns e1, if not, it returns d1.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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