Complete the code to convert the 'Sales' column to a whole number in Power Query.
Table.TransformColumnTypes(Source, {{"Sales", [1])In Power Query, Int64.Type converts a column to whole numbers (integers).
Complete the DAX formula to convert the 'Amount' column to a decimal number.
ConvertedAmount = CONVERT(Table[Amount], [1])The CONVERT function in DAX uses DOUBLE to convert to decimal numbers.
Fix the error in this Power Query step to convert 'DateText' to date type.
Table.TransformColumnTypes(Source, {{"DateText", [1])To convert text to date, use Date.Type in Power Query.
Fill both blanks to convert 'Price' to decimal and 'IsAvailable' to logical in Power Query.
Table.TransformColumnTypes(Source, {{"Price", [1], {"IsAvailable", [2])Decimal.Type converts to decimal numbers, and Logical.Type converts to true/false values.
Fill all three blanks to create a DAX measure that converts 'SalesAmount' to integer, filters for values greater than 1000, and sums them.
TotalSales = SUMX(FILTER(Table, CONVERT(Table[SalesAmount], [1]) [2] 1000), Table[SalesAmount])
We convert 'SalesAmount' to INTEGER and filter for values greater than 1000 using >.