열 0 "A"의 각 셀을 테스트하여 특정 텍스트 "Budget" "Living" "Savings"가 있는지 확인하고 행 배경색을 각각의 특정 색상으로 변경하는지 확인하려고합니다.
텍스트로 마지막 행을 확인할 수 있지만 "A"열을 테스트 할 수 없습니다. 내가 얻은 한 아래 코드를 첨부했습니다.
sub FindLastRow
rem ----------------------------------------------------------------------
rem define variables
dim document as object
dim dispatcher as object
dim oSheet
Dim oCell
Dim x
rem ----------------------------------------------------------------------
rem get access to the document
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
rem ----------------------------------------------------------------------
dim args2(0) as new com.sun.star.beans.PropertyValue
args2(0).Name = "ToPoint"
args2(0).Value = "$D$65536"
dispatcher.executeDispatch(document, ".uno:GoToCell", "", 0, args2())
dim args7(1) as new com.sun.star.beans.PropertyValue
args7(0).Name = "By"
args7(0).Value = 1
args7(1).Name = "Sel"
args7(1).Value = false
dispatcher.executeDispatch(document, ".uno:GoUpToStartOfData", "", 0, args7())
dim oActiveCell
dim oConv
oActiveCell = ThisComponent.CurrentSelection
x = oActiveCell.getCellAddress().Row
print x
Cell.String = "a" & oActiveCell.getCellAddress().Row
Cell.string = "budget"
print Cell.string
if cell.string="Budget" then
print x
end if