The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi all,
I am using Gantt chartpublished by Microsoft Corportation(https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104380765).
When the start date is null and duration is 0 it is picking up the present date as start date and duration as 1 day as attached in thescreenshot below. I don't want anything to e displayed in the timeline if the start date is null and duration is 0.
Any help is highly apprecited.
Solved! Go to Solution.
Hi @ksivaganesh99 ,
You could create a measure like the following DAX:
Measure =
IF (
SELECTEDVALUE ( 'Table'[duration] ) <> 0
&& SELECTEDVALUE ( 'Table'[StartDate] ) <> BLANK (),
1,
0
)
Then add it in the filter pane and set it to show the result whose measure = 1.
Hi @ksivaganesh99 ,
You could create a measure like the following DAX:
Measure =
IF (
SELECTEDVALUE ( 'Table'[duration] ) <> 0
&& SELECTEDVALUE ( 'Table'[StartDate] ) <> BLANK (),
1,
0
)
Then add it in the filter pane and set it to show the result whose measure = 1.
Hi ksivaganesh99 ,
I would add a filter or a slicer to exclude those tasks that have no Start Date.
Proud to be a Datanaut!
Private message me for consulting or training needs.
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
182 | |
81 | |
64 | |
46 | |
38 |