Writing VBA for Inserting Text in a multiple cells.

sirmacademy

New Member
Joined
Aug 12, 2018
Messages
17
I want to insert in a cell a text "Saturday" and "Sunday" but I find it difficult to find the pattern inserting it.

Thank you for your help.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
What cell does it need to be in and what or should the cell show it?
 
Upvote 0
I want to insert in C3, C9 C10, C16 C17, C23 C24, C30 C31.

Your thread title says "inserting text" which implies the cells already have some text in them and you want to insert your text somewhere within it. If that is the case, you need to show us the existing text you have and what it should look like after the insertion.
 
Upvote 0
@sirmacademy your screen isn’t visible. What you can see when you ask your question... is not what anyone reading this post can see, how would you explain your problem to a blind person?

As Rick points out, if you use the term insert, then be precise.

What is in the cell? Give example since your screen is NOT visible.

What should it look like afterwards? For avoidance of ambiguity, SHOW expected output.

Do not assume anyone reading can see your screen, how can they?

What does C3, C9, C10, C16, C17, C23, C24, C30, C31 contain? Why can’t you type “Saturday” or “Sunday” into them?
 
Upvote 0
Good day, Sir! Thank you very much for your concern. But I find it difficult to attached pictures or images.
 
Upvote 0
I have the code below:
Sub AddSaturdaySunday()
' get the last row
Dim startRow As Long, lastRow As Long
startRow = 3
lastRow = Sheet1.Cells(Sheet1.Rows.Count, 1).End(xlUp).Row

Dim i As Long, Mydate As String
Dim sDate As String


' Go through the marks columns
For i = startRow To lastRow
Mydate = Sheet1.Range("B" & i).Value


' Check Mydate and classify accordingly then print Saturday and Sunday
If Mydate = "2018-08-11" Then
sDate = "Saturday"


ElseIf Mydate = "2018-08-12" Then
sDate = "Sunday"

Else
'For this part it must leave the original data


End If

' Write out the class to column C
Sheet1.Range("C" & i).Value = sDate
Next

End Sub

I want to print it in a Specific Text/ Date as reflected in my conditional statement. Thank you!
 
Upvote 0
Only from your code is it clear you're working with column B. Check your first post, did you mention column B anyway or output into column C?

This is why it's important to be precise or you would have had a suggestion much sooner! One suggestion:
Code:
Sub M1()

    Dim x       As Long
    Dim arr()   As Variant
    
    x = Cells(Rows.Count, 2).End(xlUp).Row
    arr = Cells(3, 2).Resize(x - 2).Value
    For x = LBound(arr, 1) To UBound(arr, 1)
        arr(x, 1) = Format(arr(x, 1), "DDDD")
        If Left$(arr(x, 1), 1) <> "S" Then arr(x, 1) = vbNullString
    Next x
    Cells(3, 3).Resize(UBound(arr, 1)).Value = arr
    
    Erase arr
            
End Sub
(PS Hope @Rick Rothestein can post a shorter suggestion using Evaluate.. still trying to learn/understand!)
 
Last edited:
Upvote 0
(PS Hope @Rick Rothestein can post a shorter suggestion using Evaluate.. still trying to learn/understand!)
Here you go...

If there are no blank cells within the dates listed in Column B...
Code:
[table="width: 500"]
[tr]
	[td]Sub M2()
  With Range("B3", Cells(Rows.Count, "B").End(xlUp))
    .Offset(, 1) = Evaluate(Replace("IF(WEEKDAY(@,2)>5,TEXT(@,""dddd""),"""")", "@", .Address))
  End With
End Sub[/td]
[/tr]
[/table]
and if there could be blank cells within the dates listed in Column B...
Code:
[table="width: 500"]
[tr]
	[td]Sub M3()
  With Range("B3", Cells(Rows.Count, "B").End(xlUp))
    .Offset(, 1) = Evaluate(Replace("IF((@<>"""")*(WEEKDAY(@,2)>5),TEXT(@,""dddd""),"""")", "@", .Address))
  End With
End Sub[/td]
[/tr]
[/table]
 
Upvote 0
Thank you Rick, hopefully can decipher and use more often.

I know you need to create arrays of equal size and then I get stuck with rest of it. Usually end up with #VALUE in all the cells, suggesting output isn't correct :( Will practise with these tonight when home, thx again
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,752
Members
448,989
Latest member
mariah3

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