我试图获取100%的百分比并将其变成100的整数。每当我尝试获取它时,它都获取值1。我正在使用with函数从工作表中获取数据。我从一个值是100%且是百分比格式化的单元格的单元格中获取。
我尝试使用.Value和.Text并将它们同时扫描到String和Integer中,以查看我是否可以得到100%或至少100%,但是它总是给我1
Sub GrabPercentage()
With ThisWorkbook.Worksheets("Configuration Values")
Dim TestString As String
Dim TestInteger As Integer
TestString = .Cells(ConfigCounter, 17)
TestInteger = .Cells(ConfigCounter, 17)
End With
End Sub