Power Apps Community,
I am building a simple form that is connected to a MS list. What need to achieve is equipment inventory check-out/check-in. I my MS list has a multi-select (Available, Checked-out, Broken, In for maintenance, etc.)
In my form I have a rich text editor, thanks to you @Reza Dorrani.
The issue that I have is that I want four things to append (comments, multiselect.value, date/time edited, and finally User). Here is what I have:
If(Not(IsBlank(RichTextComments.HtmlText)), RichTextComments.HtmlText & " " & DataCardValue8 & "<strong>at</strong> "& Now()& "<strong>by</strong> "& User().FullName & " " & Char(13)) & ThisItem.comments
Since I could not figure out how to patch the selected value of my multi-select (DataCardValue7); I made a hidden calculated column that shows the value of the multi-select as plain text. BUT, what this does is give me the value of the multi select when the item is opened. For instance if I open an item and change the value. The next time I open the item it will append the value that I selected the previous time, but the time will be current.
I need the app to show accurate time and "status" that correspond to the time the item was opened and new comments were entered.
to get around this currently I am opening item, Changing status & save, then re-open item, add comment & save. I cannot figure how to capture the data I need to append and hoping someone on here has solved this same dilemma. Im thingking maybe a button and patch, but am at a complete loss for the coding on that button that I need. thank you in advance.