Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

How To Use MOD

Merhabalar, PowerBI konusunda yeniyim ve bir konuda sorun yaşıyorum.

1.JPG

Stok adetlerimi, mod formülü kullanarak "Mod Değeri" sütunumu oluşturdum.

A = MOD(X , 4 , 0.2) => MOD(395 , 4 , 0,2) => 3

Ancak bu formülü kullandığım zaman sütun toplamı "0" = "C" geliyor.

Ayrıca "Kalan" sütunu içinde stok adetinden mod değerini çıkarıyorum.

B = X - A => 395 - 3 = 392

Ancak bu sütununda toplamı hatalı geliyor."Y"

Bu hataların önüne nasıl geçebilirim?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you can try this measure to create mod measure.

Mod =
VAR _SUMMAIZRE =
    SUMMARIZE (
        'Table',
        'Table'[Category],
        "Stok Adeti", CALCULATE ( SUM ( 'Table'[Stok Adeti] ) )
    )
VAR _ADD_MOD =
    ADDCOLUMNS ( _SUMMAIZRE, "MOD", MOD ( [Stok Adeti], 4 ) )
RETURN
    SUMX ( _ADD_MOD, [MOD] )
Kalan = SUM('Table'[Stok Adeti]) - [Mod]

Result is as below.

RicoZhou_0-1660725725800.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you can try this measure to create mod measure.

Mod =
VAR _SUMMAIZRE =
    SUMMARIZE (
        'Table',
        'Table'[Category],
        "Stok Adeti", CALCULATE ( SUM ( 'Table'[Stok Adeti] ) )
    )
VAR _ADD_MOD =
    ADDCOLUMNS ( _SUMMAIZRE, "MOD", MOD ( [Stok Adeti], 4 ) )
RETURN
    SUMX ( _ADD_MOD, [MOD] )
Kalan = SUM('Table'[Stok Adeti]) - [Mod]

Result is as below.

RicoZhou_0-1660725725800.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

lbendlin
Super User
Super User

Merhaba,

 

what is your expected result for these columns?  Do you want to sum up the remainders of the divisions for each row?

 

Note that the MOD function only accepts two parameters.  Not sure what your 0.2  is about.

 

MOD function (DAX) - DAX | Microsoft Docs

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.