Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Within Qlik Sense Hub, I am trying to create a YYYYMM table to link to several other tables. However, I cannot seem to get the data types to align between tables so when I try to connect on this field, the connection seems poor. Both fields are coming from imported excel files and I have reviewed the fields in each file several times to ensure they are the same within the underlying excel. I don't understand why Qlik left justifies one column but right justifies the other column (see screenshot).
Any help on how to get these fields to align with each other is greatly appreciated.
because qlik is considering both field as different data type
Right align > Number
Left Align > Text
Regards,
Prashant Sangle
Convert YearMonth field to num by using num() in script.
like num(YearMonth) as YearMonth
or
Num(num#(YearMonth)) as YearMonth
Regards,
Prashant Sangle
Thanks Prashant. Is there a way to do the opposite? Convert the Right Align to text? The three tables I want to join to already have this field in Text but I can't seem to get the table on the left to import this value as text
use text() for that
Regards,
Prashant Sangle