I am trying to make a drop down menu for a sheet i can email to prospective clients where they can easily fill out different options. It would be a vehicle basis and the drop down menus I am creating are to choose make based on year and model based on make and year. I have already attempted this with the following formula in the list filter:
=INDIRECT("'Make Sheet'!" & (INDIRECT("D" & ROW()) - 1950) & ":" &(INDIRECT("D" & ROW()) - 1950))
But this appears to have blank options and certain options missing if they are not available in every row of options. So i revised it into this:
=INDIRECT("'Make Sheet'!B" & (INDIRECT("D" & ROW()) - 1950) & ":" & ADDRESS(INDIRECT("D" & ROW()) - 1950, 1 + INDIRECT("'Make Sheet'!A" & INDIRECT("D" & ROW()) - 1950))))
where the block (INDIRECT("D" & ROW()) - 1950) references the row... so:
=INDIRECT("'Make Sheet'!B" & (row) & ":" & ADDRESS(row, 1 + INDIRECT("'Make Sheet'!A" & row))))
Which now has the issue of only displaying the 1st option (A is used to determine how many are in each row)
=INDIRECT("'Make Sheet'!" & (INDIRECT("D" & ROW()) - 1950) & ":" &(INDIRECT("D" & ROW()) - 1950))
But this appears to have blank options and certain options missing if they are not available in every row of options. So i revised it into this:
=INDIRECT("'Make Sheet'!B" & (INDIRECT("D" & ROW()) - 1950) & ":" & ADDRESS(INDIRECT("D" & ROW()) - 1950, 1 + INDIRECT("'Make Sheet'!A" & INDIRECT("D" & ROW()) - 1950))))
where the block (INDIRECT("D" & ROW()) - 1950) references the row... so:
=INDIRECT("'Make Sheet'!B" & (row) & ":" & ADDRESS(row, 1 + INDIRECT("'Make Sheet'!A" & row))))
Which now has the issue of only displaying the 1st option (A is used to determine how many are in each row)