R
ryan.fitzpatrick3
I have 2 rows of information. 1) volume (1,000,000) 2) unit of measure
(lb). I would like to have it where on the data value on the chart it
would say 1,000,000lbs combined together. I have label code where this
works. I also would like it where if I change cell value D5 (where
the information is) it would change the value of the data value ( i
have this part just not the combining of text part).
Private Sub Label1_Change()
Range("d5").Select
Me.Label1.Caption = Format(Sheet1.Range("D7").Value, "0,000" +
Format(Sheet1.Range("D9").Value, ""))
End Sub
But i don't have any labels anymore, i imagine the code would be
similar to this. Any help anyone.
Ryan
(lb). I would like to have it where on the data value on the chart it
would say 1,000,000lbs combined together. I have label code where this
works. I also would like it where if I change cell value D5 (where
the information is) it would change the value of the data value ( i
have this part just not the combining of text part).
Private Sub Label1_Change()
Range("d5").Select
Me.Label1.Caption = Format(Sheet1.Range("D7").Value, "0,000" +
Format(Sheet1.Range("D9").Value, ""))
End Sub
But i don't have any labels anymore, i imagine the code would be
similar to this. Any help anyone.
Ryan