Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Convert Calculated Column to DAX measure
03-08-2024
01:11 AM
Hi all,
can you help me to convert a Calculated Column to DAX measure ?
This is the model:
and this is the calculated coloumn:
I would convert to measure...
Thanks
Solved! Go to Solution.
1 ACCEPTED SOLUTION

Anonymous
Not applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2024
07:01 PM

Hi @danidicky ,
Please try below dax formula:
Da_produrre =
SUMX (
Articoli,
IF (
[Speciale] = 1,
IF ( RELATED ( VISART[Effettiva] ) < 0, - RELATED ( VISART[Effettiva] ), 0 ),
IF (
( DIVIDE ( [Bad Dinamico], 240 ) * 30 )
- RELATED ( VISART[Effettiva] ) <= 0,
0,
CEILING (
( DIVIDE ( [Bad Dinamico], 240 ) * 30 )
- RELATED ( VISART[Effettiva] ),
[Pz_Pallet]
)
)
)
)
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 REPLY 1

Anonymous
Not applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2024
07:01 PM

Hi @danidicky ,
Please try below dax formula:
Da_produrre =
SUMX (
Articoli,
IF (
[Speciale] = 1,
IF ( RELATED ( VISART[Effettiva] ) < 0, - RELATED ( VISART[Effettiva] ), 0 ),
IF (
( DIVIDE ( [Bad Dinamico], 240 ) * 30 )
- RELATED ( VISART[Effettiva] ) <= 0,
0,
CEILING (
( DIVIDE ( [Bad Dinamico], 240 ) * 30 )
- RELATED ( VISART[Effettiva] ),
[Pz_Pallet]
)
)
)
)
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources
Featured Topics
Top Kudoed Authors (Last Month)
User | Count |
---|---|
123 | |
104 | |
84 | |
49 | |
46 |