Need help cleaning up this ugly if/elseif block.

Drumwaves

New Member
Joined
Apr 2, 2019
Messages
5
Hello friends,

I spent a while searching and googling a solution with no resolution.

Tried creating an array, but my array skills are lack luster.

Basically, I'd like a suggestion of an easier/cleaner block of code to accomplish the same thing. This code functions properly but seems very inefficient for my taste. I really only care about the top if block. There is other code in this sub, but didn't think it was important to include.


Dim DiagList as String
Dim HCC_WS as Worksheet
Dim CurRow as Long


If Me.tb_Diag1 <> "" And _
Me.tb_Diag2 <> "" And _
Me.tb_Diag3 <> "" And _
Me.tb_Diag4 <> "" Then

DiagList = Me.tb_Diag1 & Chr(10) & Me.tb_Diag2 & Chr(10) & Me.tb_Diag3 & Chr(10) & Me.tb_Diag4
ElseIf Me.tb_Diag1 <> "" And _
Me.tb_Diag2 <> "" And _
Me.tb_Diag3 <> "" And _
Me.tb_Diag4 = "" Then
DiagList = Me.tb_Diag1 & Chr(10) & Me.tb_Diag2 & Chr(10) & Me.tb_Diag3

ElseIf Me.tb_Diag1 <> "" And _
Me.tb_Diag2 <> "" And _
Me.tb_Diag3 = "" And _
Me.tb_Diag4 = "" Then
DiagList = Me.tb_Diag1 & Chr(10) & Me.tb_Diag2

ElseIf Me.tb_Diag1 <> "" And _
Me.tb_Diag2 = "" And _
Me.tb_Diag3 = "" And _
Me.tb_Diag4 = "" Then
DiagList = Me.tb_Diag1
Else
DiagList = ""
End If



If DiagList <> HCC_WS.Cells(CurRow, 7) Then
If HCC_WS.Cells(CurRow, 7) <> "" Then
Ans = MsgBox("A different Diagnosis already exists, would you like to overwrite the current Diagnosis?", vbYesNo)
Select Case Ans
Case vbYes
HCC_WS.Cells(CurRow, 7) = DiagList
Case vbNo
End Select
Else
HCC_WS.Cells(CurRow, 7) = DiagList
End If
End If
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
How about replacing the whole thing with
Code:
diaglist = Replace(Application.Trim(Me.tb_Diag1 & " " & Me.tb_Diag2 & " " & Me.tb_Diag3 & " " & Me.tb_Diag4), " ", Chr(10))
 
Upvote 0
Useful, but doesn't fit my needs.

Fyi - each Me.tb_diagx will contain a lengthy description more than a single word. The Trim is splitting apart tb_Diag1 and Chr(10) at every " ".

For instance if....
tb_diag1 = "7238 How are you doing today" and
tb_diag2 = "1234 Just fine thank you"
tb_diag3 = "321 i need some help"
tb_diag4 = "5678 we're getting close"

DiagList should equal the following in one cell...

7238 How are you doing today
1234 Just fine thank you
321 i need some help
5678 we're getting close


(4 sets of strings with 3 Alt+Enters or 3 Chr(10) to put 4 strings on 4 lines)

Example 2:


For instance if....
tb_diag1 = "7238 How are you doing today" and
tb_diag2 = "1234 Just fine thank you"
tb_diag3 = ""
tb_diag4 = ""

DiagList should equal the following in one cell...

7238 How are you doing today
1234 Just fine thank you

(2 sets of strings with 1 Alt+Enters or 1 Chr(10) to put 2 strings on 2 lines)

Hope that helps to clear up my objective.
 
Upvote 0
Ok, how about
Code:
diaglist = Replace(Replace(Application.Trim(Replace(Replace(Me.tb_Diag1 & "|" & Me.tb_Diag2 & "|" & Me.tb_Diag3 & "|" & Me.tb_Diag4, " ", "#"), "|", " ")), " ", Chr(10)), "#", " ")
This assumes that your strings wont include either | or #
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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