What are the different data types used in Dax
Loading
What are the different data types used in Dax
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaish MathewsPosted Jan 5, 2025, 7:02 AM
In Data Analysis Expressions (DAX), the data types define the kind of data that can be stored in columns or computed in expressions. Here are the primary data types used in DAX:
1. Whole Number
1,42,-10.2. Decimal Number
3.14,-100.25.3. Currency
100.0000,-45.7500.4. Date/Time
2025-01-01,12:30:45,2025-01-01 12:30:45.5. Text
"Hello, DAX!","12345"(as a string).6. Boolean
TRUEorFALSE.7. Binary (Blob)
8. Blank
BLANK().Type Handling in DAX
DAX automatically performs type conversions in many cases. For instance:
BLANK()).When working with DAX, it’s essential to understand these types and conversions to write robust formulas and avoid errors.
Muhammad Imran AnsariPosted Jan 5, 2025, 1:23 PM
Hi Kiran,
The primary data types in DAX include:
For more detailed information on DAX data types, you can refer to the following link:
https://dax.guide/datatypes/