Тёмный

Sum Visible Values of a Table in Power BI 

Goodly
Подписаться 99 тыс.
Просмотров 30 тыс.
50% 1

Опубликовано:

 

26 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 44   
@robrayborn1349
@robrayborn1349 3 года назад
Man you saved my butt! I've been trying to figure this out for two weeks. Thank you and keep this Goodly stuff coming!
@robrayborn1349
@robrayborn1349 3 года назад
I found a problem with this. In cases where the the amount showed as a Negative it did not roll up into the total/subtotal. Possibly because the SUMMARIZE list that Category was blank due to zero transactions for the year vs the previous year. Know of any way to get these negative amounts added back in?
@retamapark
@retamapark Год назад
This is a very informative video. Using DAX Studio to generate a summary table is very helpful in understanding what is going on in DAX. See the table in DAX Studio, then copy the code into into the table element in a measure in Modern Excel or Power Bi. For example, sumTable was constructed in DAX Studio. The measure was written in Excel. Thank you Chandeep! =VAR sumTable = ADDCOLUMNS( SUMMARIZE('RaceData', RaceData[Date], RaceData[Track Code]), "# of Races", CALCULATE(MAX(RaceData[Race #])) ) RETURN SUMX(sumTable, [# of Races])
@Nikendhuku-ng9xx
@Nikendhuku-ng9xx 5 месяцев назад
Only one out there explaining sum of visible values. Thank You Chandeep. Subbed
@charlesabboud1613
@charlesabboud1613 Год назад
Phenomenal Video, you are a true teacher, clarity and real understanding, thank you!
@GoodlyChandeep
@GoodlyChandeep Год назад
Wow, thank you Charles!
@henrifanda4784
@henrifanda4784 3 месяца назад
life saver. thanks so much for such a clear and easy to follow example. simply the best
@m.kajanalkar4881
@m.kajanalkar4881 3 месяца назад
Very helpful with detailed steps
@JohnSmith-rx2uv
@JohnSmith-rx2uv 3 года назад
This is one THE best PBI channels around I thank you Sir
@spilledgraphics
@spilledgraphics 3 года назад
Enjoyed the approach: showing DAX studio next to Power BI Chandeep 👌👌
@NeeleshMoravaneni94
@NeeleshMoravaneni94 3 года назад
Sum of Count = // [Products Count] = CALCULATE(DISTINCTCOUNT(Store[Product ID])) SUMX( KEEPFILTERS(VALUES('CALENDAR'[Qtr])), [Products Count] ) Hi Chandeep, I've tried in this method, which is giving same results.
@TheBullGangGeneral
@TheBullGangGeneral Год назад
amazing work, works for me too.
@danielholocsi440
@danielholocsi440 7 месяцев назад
Thank you very much, this solved my problem I've been struggling with for hours.
@wayneedmondson1065
@wayneedmondson1065 3 года назад
Hi Chandeep. Thanks for sharing this video and technique. Very useful! Thumbs up!!
@GoodlyChandeep
@GoodlyChandeep 3 года назад
Thank you! Cheers!
@amirhd2080
@amirhd2080 3 года назад
this is what i looking for for last Year tq so much
@BISimplifier
@BISimplifier Год назад
Nice. Does summarize function allow context transition while addcolumns doesnot allow context transition?
@jasonfebrian1272
@jasonfebrian1272 9 месяцев назад
Absolute legend.
@Vanced-kt4ee
@Vanced-kt4ee 4 месяца назад
It's amazing
@Adamowicz123
@Adamowicz123 3 года назад
Is IT possibile to do IT the same in power query?
@sinem1576
@sinem1576 Год назад
Hi! Do you have a video where you explain how to build such a table (sum table) on Power Bi? Thank in advance!
@sunilsingh-ji8iz
@sunilsingh-ji8iz 3 года назад
This was so helpful, thanks a lot for sharing
@TheDouglasDale
@TheDouglasDale 2 года назад
This really helped, thank you sir!
@dummydummy-rw9bq
@dummydummy-rw9bq 6 месяцев назад
Hi i am trying to create a card visual for total profit that is ROI value, how can i do that in power bi, kindly help
@padraichayes3836
@padraichayes3836 3 года назад
Brilliant video! Thanks a lot, subscribed!
@GoodlyChandeep
@GoodlyChandeep 3 года назад
Awesome, thank you!
@pupycron4302
@pupycron4302 3 года назад
Wow. Dax is both amazing and baffling. Excellent explanation though!
@manrique4630
@manrique4630 3 года назад
Hi, this is great! One question, is there a way to do this to adjust dynamically based on dimensions? For ex. if I wanted to iterate only over year, over month and year, over year and product, etc? Is there a way of doing this without explicitly indicating in the measure the dimensions to use to iterate, and without creating separate measures for each use case? Thanks!
@stephaniepavlova8214
@stephaniepavlova8214 Год назад
This is great, thanks for sharing! :)
@GoodlyChandeep
@GoodlyChandeep Год назад
Glad you liked it!
@rickystudds
@rickystudds Год назад
Thanks!
@GoodlyChandeep
@GoodlyChandeep Год назад
Welcome! Thanks for the tip!
@anushkedlaya
@anushkedlaya 2 года назад
You Saved me once again..!😁
@GoodlyChandeep
@GoodlyChandeep 2 года назад
Glad it was helpful!
@phillynn5923
@phillynn5923 3 года назад
Excellent video. Very well explained :)
@msajju113
@msajju113 2 года назад
Thank you. Need your urgent help. Lets assume in one column (column 1) I am having Gross sales, Discount, COS 1, COS 2, Variable Expenses, Fixed Expenses, and Other Income. In second column I am having values of Total Transactions. If in a matrix I take Column 1 and Values in value column then the given subtotal is just sum of all of these. I need to have visible sub totals of Net sales, GP, NOP (before other income) and NP. Can you please advice
@GoodlyChandeep
@GoodlyChandeep 2 года назад
I guess you'll have to pivot the data and create columns for each revenue and expense item
@pbihari0214
@pbihari0214 3 года назад
thank you
@lionels839
@lionels839 Год назад
Hello how can I average visible values ?
@larmondoflairallen4705
@larmondoflairallen4705 3 года назад
Why does DISTINCTCOUNT() return different numbers when you wrap it in CALCULATE() without any additional filters?? I have only ever seen CALCULATE() used in conjunction with other filters like FILTER() or ALL().
@GoodlyChandeep
@GoodlyChandeep 3 года назад
Watch this m.ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-pTI2ASgecGA.html
@nikakalichava8012
@nikakalichava8012 Год назад
the download link does not work :( Thanks anyways,
@amirhd2080
@amirhd2080 3 года назад
Please Make some Video of Tabular Editor Sample Case like Column Table This Month (have Column, [budget], Actual], and YTD (have Column, [budget], Actual]
@Wzxxx
@Wzxxx Год назад
Abolutely top teaching in DAX. I am very gratful Goodly for Your effort. I really hate dax, You are probably the one who knows how to present and teach what isr eally going on there :)with a step by step presentation in a very logical way. I really don't like ready to go solutions without explanation. Thanks once more. Top DAX channel! I also saw some solutions with SUMX(VALUES...) which looks similar in some way...is there any video which explains that solution?
Далее
Why Power BI totals might seem wrong
27:55
Просмотров 54 тыс.
Context Transition in Power BI and Tricky Examples
15:06
Random Emoji Beatbox Challenge #beatbox #tiktok
00:47
Rate our flexibility 1-10🔥👯‍♀️😈💖
00:12
Don't make these CALCULATE Function Mistakes! ⚠️
10:09
WINDOW Function in ACTION I Examples in Power BI
20:10
How to fix Incorrect Totals in Power BI
14:44
Просмотров 55 тыс.
DAX Fridays #12: SUM of distinct values
12:18
Просмотров 70 тыс.
When to use SUM and SUMX in DAX
15:48
Просмотров 25 тыс.
How To Easily Fix Incorrect Measure Totals In Power BI
11:20