chirayu
Well-Known Member
Hi All,
Was wondering something with regards to VBA & CODE tags.
Majority of my code is indented. However I noticed that when I copy my code to the forum & paste it into the thread. My indents disappear & the code looks like a huge chunk, rather than respective bits and pieces. Does this happen to you & is there a fix other than manual re-edit on forum? Example:
Should be something like this:
But instead shows up like this:
Was wondering something with regards to VBA & CODE tags.
Majority of my code is indented. However I noticed that when I copy my code to the forum & paste it into the thread. My indents disappear & the code looks like a huge chunk, rather than respective bits and pieces. Does this happen to you & is there a fix other than manual re-edit on forum? Example:
Should be something like this:
Code:
Sub Something()
IF Blah = Blah Then
'Do Something
Do Until Blah
If Not IsEmpty(Blah) Then
'Do Something more
Else
End If
Loop
Else
'Do Nothing
End If
End Sub
But instead shows up like this:
Code:
Sub Something()
IF Blah = Blah Then
'Do Something
Do Until Blah
If Not IsEmpty(Blah) Then
'Do Something more
Else
End If
Loop
Else
'Do Nothing
End If
End Sub