Hi @Vaheeth_Raj ,
Sorry for the late. I finally think of a way to get through it! Please follow below steps:



1. Create an array in Compose to include all the column names (you must find the internal column names in list settings, select the column, copy the name from url):

[
"AcceptableUsagePolicy",
"AssetsManagementPolicy",
"EmailInformationExchangePolicy",
"InformationSecurityPolicy",
"EndpointSecurityPoliciesProcedures",
"InformationSecurityIncidentManagement",
"TeleworkingPolicy"
"Non-ConformityandCorrectiveActionPolicy",
"BackupPolicy",
"HumanResourcesSecurityPolicy",
"MobileDevicePolicy"
]
2. Initialize an empty array variable.
3. In Apply to each control, looping through this array, Get items using Filter query:
items('Apply_to_each') eq 1
4. Checking if at least 1 item is there in the list in Condition control
5. If true, it means this column has at least one tick, so append to array variable using this column name and YES
items('Apply_to_each'): YES
6. Use the array variable to create an HTML table, use this table in body of Send Email action.
Best regards,