Spreadsheet.RemoveTextLabel
This function removes a text label for the specified variable.
SVB Example
Removing text labels:
Option Base 1 Sub Main Dim spr As Spreadsheet 'assigns the active spreadsheet to the object spr Set spr = ActiveSpreadsheet 'removes all "MALE" text labels located in variable 1 of the example file adstudy.sta 'the numeric value will be displayed instead of the label spr.RemoveTextLabel(1,"MALE") End Sub
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.