Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewzando
Contributor III
Contributor III

ScriptError: Arquivo BIFF

Caros,

Estou criando o meu primeiro Dashboard. Me baseei em um exemplo da aplicação.

Ao executar o script uma mensagem informa que "Não é possível ler o arquivo BIFF"

Gostaria de saber a diferença de um parametro biff e ooxml.

Vocês sabem o que pode estar ocorrendo. Meu arquivo é .xlsx

[Plan1]:

LOAD

  *,

  Rating as RatingSquare,

  Rating as RatingStar, 

  if(Rating = 5, RGB(103, 167, 202),

  if(Rating = 4, RGB(140, 191, 218),

  if(Rating = 3, RGB(175, 212, 230),

  if(Rating = 2, RGB(186, 218, 233),

  if(Rating = 1, RGB(232, 241, 246),

  RGB(205, 205, 205)))))) as RatingColor

  ;

LOAD DISTINCT

  Status,

     Centro,

     [Nro. RRM],

     [Descr. Fornecedor],

     if(Len(trim([Descr. Transportador])) = 0 , 'TRANSPORTE CIF', [Descr. Transportador]) as [Descr. Transportador],

     Classificador,

     ...

     [Data Saída]

FROM E:\SF_Metalicos_Ago.xlsx

(biff, embedded labels, table is Plan1);

[Plan1]:

LOAD DISTINCT

  [Nro. RRM],

     Classificador    

FROM E:\SF_Metalicos_Ago.xlsx

(biff, embedded labels, table is Plan1);

[Plan1]:

LOAD [Nro. RRM],

     if(Len(trim([Descr. Transportador])) = 0 , 'TRANSPORTE CIF', [Descr. Transportador]) as [Descr. Transportador]       

FROM E:\SF_Metalicos_Ago.xlsx

(biff, embedded labels, table is Plan1);

[Plan1]:

LOAD [Nro. RRM],

     [Descr. Fornecedor]    

FROM E:\SF_Metalicos_Ago.xlsx

(biff, embedded labels, table is Plan1);

LengthRange:

LOAD * INLINE [

Length Range, Start, End

< 1hr, 0, 60

1 to 1.5hrs, 61, 90

1.5 to 2hrs, 90, 120

2 to 2.5hrs, 121, 150

3hrs+, 151, 9999

];

IntervalMatchLength:

INTERVALMATCH (Length) LOAD Start, End RESIDENT LengthRange;

1 Reply
qlikviewzando
Contributor III
Contributor III
Author

Gostaria de fazer um menu lateral parecido com este.

ex.png