Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi, I am trying to convert timestamp that is wholenumber in to date and time or at least date.
I tried to createa measure using FORMAT but it failed.
I can't use calculated column because I am using company data model.
anyone would be able to help with this measure?
Thanks.
Solved! Go to Solution.
Hi @Justas4478
try
Measure =
var _d = MIN(Table[LatestTimestamp])
RETURN
DATE(LEFT(_d, 4), MID(_d, 5, 2), MID(_d, 7, 2)) & " " & TIME(MID(_d, 9, 2), MID(_d, 11, 2), RIGHT(_d, 2))
Hi @Justas4478
try
Measure =
var _d = MIN(Table[LatestTimestamp])
RETURN
DATE(LEFT(_d, 4), MID(_d, 5, 2), MID(_d, 7, 2)) & " " & TIME(MID(_d, 9, 2), MID(_d, 11, 2), RIGHT(_d, 2))
User | Count |
---|---|
81 | |
75 | |
73 | |
42 | |
36 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |