hello, I have a power app that I want to be able to add a button inside of each box on my table that gets the value of the records that appear in them and navigates to the next screen. After this, I want to be able to display the title of the records that were selected as well as other information that is associated with those records. Thanks!
This is my current function and a screenshot of what I am trying to accomplish:
//Foundation-----------------------------
UpdateContext({DS1: Concatenate(CountIf(certCollection,
'Practice Area'.Value = "Digital Services" || 'Practitioner Level'.Value = "1 - Foundation"),
" Certifications")});
UpdateContext({CS1: Concatenate(CountIf(certCollection,
"Cybersecurity" = 'Practice Area'.Value || "1 - Foundation" = 'Practitioner Level'.Value),
" Certifcations")});
UpdateContext({IA1: Concatenate(CountIf(certCollection,
"Intelligence & Automation" = 'Practice Area'.Value || "1 - Foundation" = 'Practitioner Level'.Value), " Certifications")});
UpdateContext({CK1: Concatenate(CountIf(certCollection,
"Consultant Knowledge" = 'Practice Area'.Value || "1 - Foundation" = 'Practitioner Level'.Value
), " Certifications")});
Where I want to click the button:

Where I want to display it and the type of info I want to display (It currently isn't displaying the current info):
(This is the function for this screen)
Filter(certCollection,
Title, Ascending
)
