Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi everyone,
I am trying to add a journey number for the time period to the Vehicles.
One journey would be completed when it is left from the base and returned to the base.
Attached is the expected column "Journey Number".
Thanks
Solved! Go to Solution.
Hi @Tejaswini_Dahat,
You can create calculated columns like below:
C1 = CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[Vehicle No]=EARLIER('Table'[Vehicle No])&&'Table'[TIMESTAMP]<=EARLIER('Table'[TIMESTAMP])))
C2 = var nextvalue=CALCULATE(MAX('Table'[LOCATION]),FILTER('Table','Table'[Vehicle No]=EARLIER('Table'[Vehicle No])&&'Table'[C1]=EARLIER('Table'[C1])+1))
return IF('Table'[LOCATION]="BASE" && nextvalue<>"BASE",1,0)
C3 = SUMX(FILTER('Table','Table'[Vehicle No]=EARLIER('Table'[Vehicle No])&&'Table'[TIMESTAMP]<=EARLIER('Table'[TIMESTAMP])),'Table'[C2])
Best Regards,
Qiuyun Yu
Hi @Tejaswini_Dahat,
You can create calculated columns like below:
C1 = CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[Vehicle No]=EARLIER('Table'[Vehicle No])&&'Table'[TIMESTAMP]<=EARLIER('Table'[TIMESTAMP])))
C2 = var nextvalue=CALCULATE(MAX('Table'[LOCATION]),FILTER('Table','Table'[Vehicle No]=EARLIER('Table'[Vehicle No])&&'Table'[C1]=EARLIER('Table'[C1])+1))
return IF('Table'[LOCATION]="BASE" && nextvalue<>"BASE",1,0)
C3 = SUMX(FILTER('Table','Table'[Vehicle No]=EARLIER('Table'[Vehicle No])&&'Table'[TIMESTAMP]<=EARLIER('Table'[TIMESTAMP])),'Table'[C2])
Best Regards,
Qiuyun Yu
Hey @v-qiuyu-msft , Thank you so much, for your efforts & this solution works perfectly 🙂
User | Count |
---|---|
76 | |
75 | |
46 | |
31 | |
27 |
User | Count |
---|---|
99 | |
91 | |
51 | |
48 | |
47 |