Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
MiguelHathaway
Contributor II
Contributor II

Need help with a variant (?

Hi, i'm New at Qlikview, and i'm trying to simplify my code but i can't do it.For example this is my code when I load information from an excel source.

Load
Period,
[Company Code] as [CC],
Amount,
Amount * -1 as [Negative Amount],
[Negative Amount] /1000 as [Neg Amount in miles]

The code write with Bold, doesn't work, probably because "[Negative Amount]" it's not recognized from the source of the excel. But I need it to work, cause i'm on more complex formulas, and I need them to look easy to understand. 

YourTexasBenefits

Pleasee help,

 

Labels (2)
2 Replies
vchuprina
Specialist
Specialist

Hi,

Try this:

Load *,

[Negative Amount] /1000 as [Neg Amount in miles];

Load
Period,
[Company Code] as [CC],
Amount,
Amount * -1 as [Negative Amount] 

From your excel;

Regards, 

Vitalii

 

Press LIKE if the given solution helps to solve the problem.
If it's possible please mark correct answers as "solutions" (you can mark up to 3 "solutions").
NitinK7
Specialist
Specialist

Hi,

Try this:

Load
Period,
[Company Code] as [CC],
Amount,
Amount * -1 as [Negative Amount],

(Amount * -1)/1000 as [Neg Amount in miles];

From your excel;