Mixed data format into single format

abelmgeb

New Member
Joined
Feb 22, 2016
Messages
3
Hi:

I have data that look like this (Current Data); and I want to change it to a format like the next column("Needed"):
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64, align: right"][TABLE="width: 128"]
<tbody>[TR]
[TD="width: 64"]Current Data[/TD]
[TD="width: 64"]Needed[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 64"]0.082[/TD]
[TD="align: right"]8.2[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 64"]7.2[/TD]
[TD="align: right"]7.2[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 64"]0.065[/TD]
[TD="align: right"]6.5[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 64"]7.2[/TD]
[TD="align: right"]7.2[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 64"]0.066[/TD]
[TD="align: right"]6.6[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 64"]6[/TD]
[TD="align: right"]6.0[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]


Just to give a background, this is a lab value; and different lab companies send us data in two formats; and I need to have the same format in order to do further analysis and calculations to the values.

Thanks for your help.

abelmgeb
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hm, assuming there are no 'correct' values under 1

IF(A2<1,A2*100,A2)

dragged down.
 
Last edited:
Upvote 0
Here is another formulas that should also work...

=A2*100^(A2<1)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,286
Members
452,631
Latest member
a_potato

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