Hi @AbcdEfg123
You can sort a gallery containing both numbers and text in the order you describe by using a formula that differentiates between numeric and text values. You can achieve this by using the SortByColumns, IsNumeric, and Value functions.
SortByColumns(
AddColumns(
YourSharePointList,
NumericValue, If(IsNumeric(YourColumn), Value(YourColumn), Blank()),
IsNumber, IsNumeric(YourColumn)
),
"NumericValue", SortOrder.Descending,
"IsNumber", SortOrder.Descending,
"YourColumn", SortOrder.Ascending
)
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.