Hello,
I have a sharepoint list with N item. I want to get the Nth item but only if exists, otherwise i should get a blank or some sort of error.
It's a list of questions related to a game. Each game might have 10 questions but it might happen that some are not set, so i have to check for that.
Last(FirstN(Filter(mySPlist, chosedID=ID),2)));
I used this function but in this case, if the list have only one item, instead of giving me "blank" it gives me the first and only element of the list...
how can i achieve what I need?