Forum Discussion
How to create a Data type table
- 4 years ago
Anonymous Yes, you can get the Column Name and Datatypes of the column and other informations about the schema using the below M Code.
#"Column Names" = Table.Schema("Table Name")Once you get all the information, you can then keep whatever is required for your need and rest you can or remove.
** If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution, so that it comes in top of the search and help others. Thank you !
Good Luck 👍
Anonymous Yes, you can get the Column Name and Datatypes of the column and other informations about the schema using the below M Code.
#"Column Names" = Table.Schema("Table Name")
Once you get all the information, you can then keep whatever is required for your need and rest you can or remove.
** If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution, so that it comes in top of the search and help others. Thank you ! Good Luck 👍 |