Hi,
I created Single line text column as a time column in share point and a Combo box in power apps.
I need formula for Time in Combo box <= Time Single line text column in SharePoint
What function do I have to use Pls Help?

Hi,
I created Single line text column as a time column in share point and a Combo box in power apps.
I need formula for Time in Combo box <= Time Single line text column in SharePoint
What function do I have to use Pls Help?
Hello, @SathishSS text can't be calculated you need to make Collection
App OnStart =
ClearCollect(Times,
{Text: "1:00 AM", hour:1, Minutes: 60},
{Text: "1:30 AM", hour:1.30, Minutes: 90},
{Text: "2:00 AM", hour:2, Minutes: 120},
{Text: "2:30 AM", hour:2.30, Minutes: 150},
{Text: "3:00 AM", hour:3, Minutes: 180},
{Text: "3:30 AM", hour:3.30,Minutes: 210},
{Text: "4:00 AM", hour:4, Minutes: 240},
{Text: "4:30 AM", hour:4.30,Minutes: 270},
{Text: "5:00 AM", hour:5, Minutes: 300});
Add Dropdown Item = Times
you can calculate
dropdown.selected.hour <= or >=