I'm creating an app where I want to cascade two dropdown lists, where different SharePoint lists.
The First Dropdown list: dd_roomNo connect with tbl_roomNo
The Second Dropdown list: dd_period
in dd_period I already managed with the following code
Filter(
tbl_period,
Not(
period in tbl_register.Time_Reserve && Text(
Now(),
"dd/mm/yyyy"
) in tbl_register.convertDate
) And TimeValue(
Concatenate(
Left(
Substitute(
period,
".",
":"
),
5
),
Right(
period,
1
)
)
) > TimeValue(Now())
)
I would like to add a new condition,
If the user selects room No.1 in dd_roomNo, the Expected result should be dd_period will show just the period that is not reserved in Room No.1.
How could I filter the second dropdown?
Thanks in advance.

Report
All responses (
Answers (