Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Sorry for my english..
i have another problem...
i need to make a macro that select multiple values...
For example in the field month select the month<5 and month =8
set mes = activedocument.fields("Mes").getpossiblevalues
select
case 8
activedocument.fields("Mes").select "<=" & 1 & " and =" & 8
end select
case perfil.Item(0).textHi,
I guess this is, what you are looking for
sub test()
ActiveDocument.ClearAll
Set f = ActiveDocument.Fields("MONTH")
f.Select "<=5"
f.ToggleSelect "8"
end sub
Cheers,
Justinas
Hi,
I guess this is, what you are looking for
sub test()
ActiveDocument.ClearAll
Set f = ActiveDocument.Fields("MONTH")
f.Select "<=5"
f.ToggleSelect "8"
end sub
Cheers,
Justinas
i have read to use toogleselect or something like this
can someone explain me about this??
but how i works???
what this expression mean??
can i add more f.ToggleSelect "8" to add more selections???
thanks for the help...