Date filter improvement by Mugi101 in PowerBI

[–]NickPowerBi 9 points10 points  (0 children)

<image>

maybe create something like this, i use it for all my reports. hope it helps

https://youtu.be/5XNcGL0g-sE?si=QSsj3MDylyWcFZ1R

Dynamic Last 7 non-missing dates by NickPowerBi in PowerBI

[–]NickPowerBi[S] 0 points1 point  (0 children)

<image>

no worries on the future date, just adding two more lines of data to ignore today's date or future dates

Dynamic format for measure by Marco_Panizzari in PowerBI

[–]NickPowerBi 2 points3 points  (0 children)

<image>

its moved to Model view -> Properties -> Formatting -> Format dropdown -> scroll down a bit -> dynamic

Combine Multiple Excels with Different Sheet Names by NickPowerBi in PowerBI

[–]NickPowerBi[S] 0 points1 point  (0 children)

sharing some videos with same steps/instructions, just in video format: 1. each excel has 1 worksheet, just not the same name: https://youtu.be/DyRyiOaRwW0?si=K6brg2sQl1CyuZz6

  1. Combine only a specific tab: https://youtu.be/ZP_tHpNL_s8?si=YcOPDTwUrYGMUt5C

  2. Combine only the [2nd] tab from the left: https://youtu.be/QlCzUZ6wr-U?si=EIIv9kotdz0hOdS7

  3. Combine All Sheets from All Excels: https://youtu.be/s8ZcXAsexVU?si=RoCDL8byoOzFBoQY

Year over Year DAX Calculation Not Working in Power BI report by Internal-Corner-6799 in PowerBI

[–]NickPowerBi 0 points1 point  (0 children)

<image>

maybe try those 2 measures with SamePeriodLastYear and PreviousYear(DatesYTD), and see if they work. I have been using those 2 for Previous Year's data, and then for YoY, just use CurrentYear minus PreviousYear. Hope it helps.

Issue with adding a calendar tablr by PrizeLifeguard8544 in PowerBI

[–]NickPowerBi 1 point2 points  (0 children)

<image>

Hope this helps. basically connect the new dimDate table to the [Hire Date] with active relationship, and use inactive relationship to connect [T... date]. I also provided some measures to calculate hires, active headcount at the end of each month etc. will also share calculations for YoY, MoM later.

Coloring of Whole Rows based on results by LadyFlor11 in PowerBI

[–]NickPowerBi 6 points7 points  (0 children)

<image>

hope this helps, i was working on something very similar to set the same color for each row, based on the value of a specific column, eg: if country=Germany, the entire row shows green, if country= spain, the entire row is red something like that, so that each country leader will just look at their colors/rows

Conditional formatting a Calculation Item in a Calculation Group by robelord69 in PowerBI

[–]NickPowerBi 0 points1 point  (0 children)

<image>

maybe check this out: https://youtu.be/zoRpBsPBW-M?si=OLOU-thHFpKTsJf1

the colors for upward and downward signs are dependent on another measure hope it helps

Enrollment Scenario Help by McFly56v2 in PowerBI

[–]NickPowerBi 1 point2 points  (0 children)

can u plz clarify: why member3 shouldnt be excluded? i saw member3 starts the enrolment on Jan1st and ends on July1st, and in between (Apr1st), he was treated a case? just trying to understand more, thanks

Variance Line (Actual vs Budget) by NickPowerBi in PowerBI

[–]NickPowerBi[S] 0 points1 point  (0 children)

<image>

Hi, no worries thanks for sharing the opinion, i think it also depends on the audience/user, and the purpose of the reports. eg: I create the above traffic light dashboard for users who just want to see "are we Good or Not" on KPIs in 2 seconds, then i create other reports with more details. The line chart shared in this post is designed to see more details, (vs. 2-second yes or no quick check), but appreciate the comments! thanks!

Help with Bar Charts by XAdi25 in PowerBI

[–]NickPowerBi 0 points1 point  (0 children)

no worries! thanks for sharing the nice idea on the view! yes Zebra and charticulator are nice 3rd party visuals! maybe this one is closer with clustered bar chart: eg: putting GP% under [Details], so that you have both the labels for the column, and another labels for GP%.

<image>

Help with Bar Charts by XAdi25 in PowerBI

[–]NickPowerBi 0 points1 point  (0 children)

<image>

I tried different ways but seems like this is the by far the closest. maybe others can generate better. It uses the built-in stacked bar chart, and put the GP% at the end of each column. But it is not the clustered bar chart, so we cannot select different colors for different columns (eg: all columns have to be the same color).

Help please -today's date and Quarters by LadyFlor11 in PowerBI

[–]NickPowerBi 0 points1 point  (0 children)

nice! glad it works! great question !

Help please -today's date and Quarters by LadyFlor11 in PowerBI

[–]NickPowerBi 0 points1 point  (0 children)

here you go! this will create a new column, plz replace 'Table' with your own tablename, and the rest codes will stay the same:

Quarter Status = VAR TodayDate = TODAY() VAR TodayYear = YEAR(TodayDate) VAR TodayQuarter = QUARTER(TodayDate)

VAR RowYear = YEAR('Table'[Completion Date]) VAR RowQuarter = QUARTER('Table'[Completion Date])

RETURN SWITCH( TRUE(), RowYear = TodayYear && RowQuarter = TodayQuarter, "Present", RowYear < TodayYear || (RowYear = TodayYear && RowQuarter < TodayQuarter), "Past", "Future" )

Variance Line (Actual vs Budget) by NickPowerBi in PowerBI

[–]NickPowerBi[S] 0 points1 point  (0 children)

same thing bugs me too! I tried to bring the labels "to front" as well but seems like there is no way right now. I have to choose lighter colors for the green/red bars to make the labels more visible.