Dependent dropdown

i want to create two dependent dropdown one is division and other is business unit . now how can i enter values to division and business unit

Hi @srijan.vaidya,

You can do this with expressions, but it’ll be MUCH easier with Data Service integration. The release for this is imminent!

With expressions:
DivisionDropdown Source: =List("First Division", "Second Division", "Third Division")

Buisness Unit Dropdown Source:

If(DivisionDropdown.Selected == "First Division",
    List("BU1", "BU2"), 
    If(DivisionDropdown.Selected == "Second Division", 
        List("BU3", "BU4"), 
        List("BU5", "BU6")
    )
)