Estou tentando testar cada célula na coluna 0 "A" para ver se há um texto específico "Orçamento" "Viva" "Poupança" e, se isso ocorrer, altere a cor do plano de fundo da linha para uma cor específica para cada.
Eu posso determinar a última linha com texto, mas não posso testar a coluna "A". Anexei o código abaixo até onde consegui.
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
Tags script openoffice-calc