Hello guys,
I tried to find a way of having a correct value in cells c14, c15, c16 according to textbox(s) value.
I attached a test file for yr refference.
I appreciate your help!![]()
Hello guys,
I tried to find a way of having a correct value in cells c14, c15, c16 according to textbox(s) value.
I attached a test file for yr refference.
I appreciate your help!![]()
Regards, John55
If you have issues with Code I've provided, I appreciate your feedback.
In the event Code provided resolves your issue, please mark your Thread as SOLVED.
If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.
...enjoy -funny parrots-
Hi,
If I understand right, you can achieve it without VBA code, just formula
in c14, c15 put
in c16:![]()
=COUNTIFS(C3:C6,"<>-",C3:C6,"<>")*2
![]()
=COUNTIFS(C3:C6,"<>-",C3:C6,"<>")
If you are pleased with a member's answer then use the Star icon to rate it.
thx a lot for yr solution! it works! I want to use it in a large project and I need a vba solution, if I do not find one I'll try to incorporate this one!
![]()
it's easy to incorporate it in several different ways:
![]()
With Range("C14") .FormulaR1C1 = _ "=COUNTIFS(R[-11]C:R[-8]C,""<>-"",R[-11]C:R[-8]C,""<>"")*2" .Value = .Value 'Comment out this line if you want to keep formula, not value End With
or
![]()
Range("C14").Value = WorksheetFunction.CountIfs(Range("C3:C6"), "<>-", Range("C3:C6"), "<>") * 2
Hi John55,
maybe this
![]()
Private Sub CommandButton1_Click() Dim t& Range("C3:C6").Value = Application.Transpose(Array(TextBox1, TextBox2, TextBox3, TextBox4)) t = -(Len(TextBox1.Value) > 1) - (Len(TextBox2.Value) > 1) - _ (Len(TextBox3.Value) > 1) - (Len(TextBox4.Value) > 1) Range("C14:C16").Value = Application.Transpose(Array(2 * t, 2 * t, t)) End Sub
Thanks both of you!![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks