Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
I have a worksheet in which my data is arranged as per temp. I have Temp in one column and the corresponding value in the other. I need to inser For eg. I have temp 25C in two adjacent columns i have to make it Temp: 25C and remove the 25C from that column. Can I get some help with the Excel Macro for the same. Dhawal... |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The easiest way would be to simply record the macro. Start the macro recorder
(ToolsMacros...), then execute the commands you need. Stop the recorder, and save the macro with whatever name you want. -- Regards, Fred "Dhawal" wrote in message ups.com... Hello, I have a worksheet in which my data is arranged as per temp. I have Temp in one column and the corresponding value in the other. I need to inser For eg. I have temp 25C in two adjacent columns i have to make it Temp: 25C and remove the 25C from that column. Can I get some help with the Excel Macro for the same. Dhawal... |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That Helps. But the data is uncertain so I have temp in many different
columns. There is more data below temp. I need some help with that. Regards, Dhawal Fred Smith wrote: The easiest way would be to simply record the macro. Start the macro recorder (ToolsMacros...), then execute the commands you need. Stop the recorder, and save the macro with whatever name you want. -- Regards, Fred "Dhawal" wrote in message ups.com... Hello, I have a worksheet in which my data is arranged as per temp. I have Temp in one column and the corresponding value in the other. I need to inser For eg. I have temp 25C in two adjacent columns i have to make it Temp: 25C and remove the 25C from that column. Can I get some help with the Excel Macro for the same. Dhawal... |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That Helps. But the data is uncertain so I have temp in many different
columns. There is more data below temp. I need some help with that. Regards, Dhawal Fred Smith wrote: The easiest way would be to simply record the macro. Start the macro recorder (ToolsMacros...), then execute the commands you need. Stop the recorder, and save the macro with whatever name you want. -- Regards, Fred "Dhawal" wrote in message ups.com... Hello, I have a worksheet in which my data is arranged as per temp. I have Temp in one column and the corresponding value in the other. I need to inser For eg. I have temp 25C in two adjacent columns i have to make it Temp: 25C and remove the 25C from that column. Can I get some help with the Excel Macro for the same. Dhawal... |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
OK. Post the macro you have, then tell us what you need changed. That will be a
lot quicker than having everyone guess what your spreadsheet looks like. -- Regards, Fred "Dhawal" wrote in message oups.com... That Helps. But the data is uncertain so I have temp in many different columns. There is more data below temp. I need some help with that. Regards, Dhawal Fred Smith wrote: The easiest way would be to simply record the macro. Start the macro recorder (ToolsMacros...), then execute the commands you need. Stop the recorder, and save the macro with whatever name you want. -- Regards, Fred "Dhawal" wrote in message ups.com... Hello, I have a worksheet in which my data is arranged as per temp. I have Temp in one column and the corresponding value in the other. I need to inser For eg. I have temp 25C in two adjacent columns i have to make it Temp: 25C and remove the 25C from that column. Can I get some help with the Excel Macro for the same. Dhawal... |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this code - just be sure you're on the sheet you need to change things on
before using it - it works on the currently active/chosen sheet. Sub CombineTemps() Dim anyCell As Range ActiveSheet.UsedRange.Select For Each anyCell In Selection If UCase(anyCell.Value) = "TEMP" Then anyCell.Value = anyCell.Value & ": " & anyCell.Offset(0, 1).Value anyCell.Offset(0, 1) = "" End If Next End Sub "Dhawal" wrote: That Helps. But the data is uncertain so I have temp in many different columns. There is more data below temp. I need some help with that. Regards, Dhawal Fred Smith wrote: The easiest way would be to simply record the macro. Start the macro recorder (ToolsMacros...), then execute the commands you need. Stop the recorder, and save the macro with whatever name you want. -- Regards, Fred "Dhawal" wrote in message ups.com... Hello, I have a worksheet in which my data is arranged as per temp. I have Temp in one column and the corresponding value in the other. I need to inser For eg. I have temp 25C in two adjacent columns i have to make it Temp: 25C and remove the 25C from that column. Can I get some help with the Excel Macro for the same. Dhawal... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
error when running cut & paste macro | Excel Worksheet Functions | |||
Dynamic column insert (macro) | Excel Discussion (Misc queries) | |||
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER | New Users to Excel | |||
MS EXCEL does not let me insert a column | Excel Discussion (Misc queries) | |||
How do I insert a prompt into an Excel macro? | Excel Discussion (Misc queries) |