Yes, sir; every value I seek is a column available in the SP list/collection (data source).
I have been given more than 800 .pdf certs or quals files, that have various naming conventions. I am trying to figure out how to best introduce these files into the new Power Apps database so that when the Member pulls up their profile the documents will show in the Gallery.
I will, more than likely, have to convert all the files to an image file. In the meantime, I can get the files (image or .pdf) to show up in an independent Gallery based on the library as a data source. However, if I try to display these same files/images in the Image control of my main Gallery (tied to the MembersCertsandQualsList), the images will not display.
All of the fields that would make up the name of a 'CQTitle' file in the SP library are available to the Gallery, from the list/collection.
UnqID, CQTitle, CQYr are all columns in the MemberCertsandQualsList/Collection.
There are other fields in the Gallery I added, but they are not columns in the 'list/collection', and are methods one forum person recommended to use to provide data without relying on calculated columns, current date, and other coding and delegation impediment familiar to and through SP.
I don't have a problem with it (or doing any of this is SP and Automate, if that's more efficient). I am trying to reduce as many impediments to data access.
Example: The formula in 'ComplianceLabel_1' is what is populating 'ECMmbrCQStatHtmlTxtFld_4' (or, 'Compliance Status' in the User Interface/Gallery)
If( LookUp( DaystoRenewalCollection, ClassTitles = ThisItem.CQTitle ).DaysToRenewal = 0, "Certified", ( DateDiff( ThisItem.DteofCQ, Today(), Days ) > LookUp( DaystoRenewalCollection, ClassTitles=ThisItem.CQTitle ).DaysToRenewal )|| Value(ThisItem.DteofCQ)=0, "Noncompliant", "Compliant" )
I believe all the fields required to achieve the goal are present, accounted for, and populated with data. What do I do now?