Hello, I have created some text in my text box. This is a set of individual textboxes that are being filtered by my dropdown. I want to be able to click "View Details" and navigate to the next screen. Also, I want to be able to get the data that is in that record as well.
This is my current formula for the dropdown and the first textbox:
(Screen "OnVisible" Formula)
Set(certCollection, SortByColumns(
Filter(AddColumns(Certifications, "TextCPs", Concat('Applicable Career Paths', Value & ",")),
pathInput.Selected.Title in TextCPs
),
"Title", Ascending
));
(Dropdown "OnChange" Formula)
Set(certText, "View Details");
//Foundation-----------------------------
UpdateContext({DS1: Concatenate(CountIf(certCollection,
'Practice Area'.Value = "Digital Services" || 'Practitioner Level'.Value = "1 - Foundation"),
" Certifications", Char(13), Char(13), certText)});
(Textbox "OnSelect" Formula)
Set(certLink, certText)
Screenshot: