testing whether a list item has a value

is it possible to test whether a list item has a value (or rather whether it’s value is empty) with a conditional?

not really, but it was enough for me to be able to work out what i wanted so thanks :slight_smile:

for example

set myList to {“hi”, “lo”, “woo”, “”, “grr”}
set x to “4”
if item x of myList = “” then
display dialog “w00t”
else
display dialog “w00t2”
end if