The label itself doesn't have a Shrink property, but you could set the visible property in VBA to whether or not the text box has a null value. In the report's On Current event, add:
Me.LableBillingWeeks.Visible = IsNull(Me.BillingWeeks)
That should take care of the label.