Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I want to make a column chart with the distribution of employment over individual months. My data is: start date (05-2021), end date (10-2021) and FTE e.g. 0.8. How to show that this FTE value is 0.8 from May to October (so that the chart shows the individual months, May, June, July etc ..)
Solved! Go to Solution.
Hi @w_Strzelecka ,
I created some data:
There are 0.8 in June, July, September
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Month],'Table'[FTE],"Flag",IF([FTE] in {0.8},1,0))
2. Place [Month] of Table2 on Axis, and place [FTE] of Table on Values.
3. Place [Flag] in Filter, set is=1, applyfilter.
4. Result:
Only months containing 0.8 are displayed in the visual object
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @w_Strzelecka ,
I created some data:
There are 0.8 in June, July, September
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Month],'Table'[FTE],"Flag",IF([FTE] in {0.8},1,0))
2. Place [Month] of Table2 on Axis, and place [FTE] of Table on Values.
3. Place [Flag] in Filter, set is=1, applyfilter.
4. Result:
Only months containing 0.8 are displayed in the visual object
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@w_Strzelecka , You can create static measure
measure =.8
in case you have selected range and other fact measure support it should work
or plot this date range
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 37 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 25 |