Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Merhabalar, PowerBI konusunda yeniyim ve bir konuda sorun yaşıyorum.
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?
Solved! Go to Solution.
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.
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.
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.
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.
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.
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
28 | |
19 | |
13 | |
11 | |
7 |