Hi @tjalui ,
Could you please share a bit more about the 'Transaction Type' column in your 'Quote Line Detail' Entity? Is it a Option Set column?
If the 'Transaction Type' column in your 'Quote Line Detail' Entity is a Option Set type column, please consider modify your formula as below:
SortByColumns(
Filter(
'Quote Line Detail', 'Quote Line'.Name= GalleryQuoteLine.Selected.'Quote Line Description',
'Transaction Type' = [@'Transaction Type'].'Project Contract'
),
"createdon",
Ascending
)
If the 'Transaction Type' column in your 'Quote Line Detail' Entity is a "Two Options" type column, please consider modify above formula as below:
SortByColumns(
Filter(
'Quote Line Detail', 'Quote Line'.Name= GalleryQuoteLine.Selected.'Quote Line Description',
'Transaction Type' = 'Transaction Type (Quote Line Detail)'.'Project Contract'
),
"createdon",
Ascending
)
If the 'Transaction Type' column in your 'Quote Line Detail' Entity is a normal Text type column, modify your formula as below:
SortByColumns(
Filter(
'Quote Line Detail', 'Quote Line'.Name= GalleryQuoteLine.Selected.'Quote Line Description',
"Project Contract" in 'Transaction Type' // Modify formula here
),
"createdon",
Ascending
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,