VBA I think it is simple but

Endeavouring

Board Regular
Joined
Jun 30, 2010
Messages
115
Hi

I have a simple user form with a refedit field to select a column , and an option button (optionbutton1) I then want to insert a new column to the right of the column selected by the refedit if the value of optionbutton1 = True

I have tried things like
If optionbutton1.value = True Then
Range(RefEdit1.Value).Column
Selection.Insert Shift:=xlToRight

but then it falls over at the .column

I then ultimately want to fill that column with the length of the data in the cell to the left, but my initial problem is getting the value of the refedit to insert the column.

Thanks
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try

Code:
If optionbutton1.Value = True Then
    Range(RefEdit1.Value).EntireColumn.Insert
 
Upvote 0
Cheers vog

But any chance it could insert the new column to the right of the selection by refedit, this appears to insert it to the left.
 
Upvote 0
Perhaps

Code:
If optionbutton1.Value = True Then
    Range(RefEdit1.Value).Offset(, 1).EntireColumn.Insert
 
Upvote 0
Hi

Vog kindly solved my initial problem of inserting a new column, but can anyone assist with the second part which is to fill that column with the length of the data in the cell to the left. ie. a VBA equivalent of the value of =LEN(xx)

Cheers
 
Upvote 0
Try

Code:
If optionbutton1.Value = True Then
    Range(RefEdit1.Value).EntireColumn.Copy
    Range(RefEdit1.Value).Offset(, 1).EntireColumn.Insert
 
Upvote 0
Hi VoG
that copies the contents of the original column, but what I want is the length (number of characters incl.spaces) of the original column ie. the quivalent of =len(xx) in each cell containing data.

ie. original cell contained text "the Cat" the corresponding cell in the new column would display 7
 
Upvote 0
Try

Code:
f optionbutton1.Value = True Then
    Range(RefEdit1.Value).EntireColumn.Copy
    Range(RefEdit1.Value).Offset(, 1).EntireColumn.Insert
    For Each C In Range(RefEdit1.Value).Offset(, 1).EntireColumn.SpecialCells(xlCellTypeConstants)
        C.Value = Len(C.Value)
    Next C
 
Upvote 0

Forum statistics

Threads
1,214,428
Messages
6,119,420
Members
448,895
Latest member
omarahmed1

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