Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Datetime2 = VAR Length = INT(LEN('Verizon Wireless'[Datetime]) - 5)
RETURN LEFT('Verizon Wireless'[Datetime], Length) & ":" &
RIGHT('Verizon Wireless'[Datetime], 5)
I'm importing CSV data that comes from Verizon Wireless. PBI is mangling their Time column so I'm having to do a few steps to parse it out manually (most of these steps are not shown).
The above column definition is my final step in this process. Once this column can be created I expect I should be able to convert the type of the column from Text to Datatime.
The problem is that LEFT() won't accept a 2nd parameter that's been dynamically calculated. If I type a value in, it works fine. The problem is that this is not possible because the left portion I want is a variable length.
I also tried running the calculation through INT() thinking that might solve it but I had the same problem.
Here's a screenshot of the formula, data, and error message. What am I doing wrong here?
Lastly, using the first record as an example, the output in Datetime2 would be "12/22/2017 3:19 PM".
Solved! Go to Solution.
As is usually the case, I found the answer a few minutes after finally giving up and posting my question in a forum.
Not every column in Datetime has data so LEN() is returning an error on those columns. This has pointed out some other datetime shenanigans in Verizon's data so I'm going to have to take a different approach.
As is usually the case, I found the answer a few minutes after finally giving up and posting my question in a forum.
Not every column in Datetime has data so LEN() is returning an error on those columns. This has pointed out some other datetime shenanigans in Verizon's data so I'm going to have to take a different approach.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.