Hi @GeneErz
You can achieve your goal by using a conditional statement in your DataCardValue1 text box formula. Y
ou can check if the selected name from dropdown2_1 is "HOLIDAY" and then concatenate the word "Remote" only if it is not.
For example, you can use something like this:
Concatenate(
dropdown2_1.Selected.Value,
If(
dropdown2_1.Selected.Value <> "HOLIDAY",
"Remote"
)
)
This will append "Remote" to the selected name unless it is "HOLIDAY".
If you have any questions or feedback, please let me know. Have a great day! 😊
-----------------------
PowerYsa Power Platform Enthusiast [LinkedIn] | [Youtube]
I love to share my knowledge and learn from others. If you find my posts helpful, please give them a thumbs up 👍 or mark them as a solution ✔️. You can also check out my [@PowerYSA] for some cool solutions and insights. Feel free to connect with me on any of the platforms above. Cheers! 🍻
I hope this helps you.