1

I'm using alaSQL to parse data from excel. in excel, I have field named: "text" and output field is "word", here I have 3 row, abc test 11:30 third is time but I need to parse as string, now it parses directly and result is: 0.479166666666667 please, give me advice, how to parse as string?

this is my query: select text word from xlsx('path/to/excel' ,{ headers:true })

userProfile
  • 141
  • 1
  • 8

2 Answers2

0

Where is the code/snippet for this project? It would help alot to better answer your question.

Before:

select text word from xlsx('path/to/excel' ,{ headers:true })

After:

SELECT text from xlsx('path/to/excel',{headers:true});

I would assume your trying to get the field/column "text" and get the table row "word".

Daniel Medina
  • 44
  • 1
  • 8
0

You need to parse the date and time first. Take a look at this link. Parse date and time form excel

Rohman HM
  • 2,539
  • 3
  • 25
  • 40
André Bueno
  • 89
  • 1
  • 3