sub quant_linhas()
dim linha as integer
range ("c6").select
do while activecell <>""
if activecell = "nacional" then
linha = linha + 1
end if
activecell.offset(1,0).select
loop
msgbox = "Total de vendas: " & linha
linha = ""
end sub