Hi All
I'm have a problem combining two columns into one. The code below does what I want
Sheets("Calculations").Range("K2") = Sheets("Calculations").Range("J2").Value & Sheets("Calculations").Range("I2").Text
J2 contains a value and I2 contains the time and works as in it displays:- Commences: 07:31 which is what i want to achieve.
How do i convert the below to make it put the correct values in all the rows ie: K3=J3 & J4.........
Sheets("Calculations").Range("K2:K" & LastRow2) = Sheets("Calculations").Range("J2").Value & Sheets("Calculations").Range("I2").Text (obviously this puts the J2 and I2 values in every row)
I have tried doing it with formula, the problem is that it changes back to time format as a number and I have tried everything i know to sort this out without any luck.
Any help would be appreciated
cheers
Paul
I'm have a problem combining two columns into one. The code below does what I want
Sheets("Calculations").Range("K2") = Sheets("Calculations").Range("J2").Value & Sheets("Calculations").Range("I2").Text
J2 contains a value and I2 contains the time and works as in it displays:- Commences: 07:31 which is what i want to achieve.
How do i convert the below to make it put the correct values in all the rows ie: K3=J3 & J4.........
Sheets("Calculations").Range("K2:K" & LastRow2) = Sheets("Calculations").Range("J2").Value & Sheets("Calculations").Range("I2").Text (obviously this puts the J2 and I2 values in every row)
I have tried doing it with formula, the problem is that it changes back to time format as a number and I have tried everything i know to sort this out without any luck.
Any help would be appreciated
cheers
Paul
Last edited: