Forum Discussion
Anonymous
4 years agoNot applicable
Dax problem
I have an employee details table without their email addresses so, there is a requirement for making their Email address. what Dax should I write? Employee table's Columns are: - FirstName, LastN...
- 4 years ago
Add a new column to your employees able
Email = [FirstName] & "." & [Age] & "@gmail.com"
Mohammad_Refaei
4 years agoSolution Specialist
What is the email ID pattern?
- Anonymous4 years agoNot applicable
First Name , age @gmail.com
- Mohammad_Refaei4 years agoSolution Specialist
Add a new column to your employees able
Email = [FirstName] & "." & [Age] & "@gmail.com"- Anonymous4 years agoNot applicable
thank you