Power BI - Power Query EditorWhich of the following is the correct Power Query step to change a column's data type to text?ATable.TransformColumnTypes(Source, {{"Column1", type text}})BTable.ChangeType(Source, {"Column1", "text"})CChangeType(Source, "Column1", Text)DTransformColumn(Source, "Column1", TextType)Check Answer
Step-by-Step SolutionSolution:Step 1: Recall Power Query syntax for changing column typesThe correct function is Table.TransformColumnTypes with a list of column-type pairs.Step 2: Match the syntax to the optionsTable.TransformColumnTypes(Source, {{"Column1", type text}}) matches the correct syntax exactly; others have incorrect function names or parameters.Final Answer:Table.TransformColumnTypes(Source, {{"Column1", type text}}) -> Option AQuick Check:Correct Power Query syntax = Table.TransformColumnTypes(Source, {{"Column1", type text}}) [OK]Quick Trick: Use Table.TransformColumnTypes with column and type pairs [OK]Common Mistakes:Using wrong function namesPassing parameters in wrong orderUsing quotes incorrectly around types
Master "Power Query Editor" in Power BI9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepSheetTryChallengeScenarioRecallDash
More Power BI Quizzes Basic Visualizations - Table and matrix visuals - Quiz 14medium Basic Visualizations - Card and multi-row card - Quiz 14medium Basic Visualizations - Why choosing the right visual matters - Quiz 8hard Data Cleaning with Power Query - Pivoting columns - Quiz 10hard Formatting and Design - Visual formatting options - Quiz 2easy Formatting and Design - Visual formatting options - Quiz 13medium Getting Data - Excel data import - Quiz 11easy Power Query Editor - Column operations (rename, remove, reorder) - Quiz 11easy Power Query Editor - Data type changes - Quiz 7medium Power Query Editor - Filtering rows - Quiz 13medium