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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
MRuiz
Contributor
Contributor

Problem to call data

Hi everyone,

I'm new on QlikSense only few month of practice.

My question is simple : Is it possible in the same table to call a data in function of an other data ?

I have a table like this :

Date | Date2 | Hours

I want to call "Hours" in function of "Date" or "Date2" because depending on the date "Hours" is not the same result

 

I hope my question is clear Smiley Tongue

Thanks for your help !

 

3 Replies
Channa
Specialist III
Specialist III

clear make it more 

Channa
MRuiz
Contributor
Contributor
Author

My table is like that (example):

 

Date          |    Date 2      | Hours

08/02/19      08/02/19    0,5
10/02/19     10/02/19    1,5
12/02/19     12/02/19    5,7

 

Can I make something like LOAD "Hours" from "Date" or LOAD "Hours" from "Date2" ??

Because I know it's weird but in function of Date or Date2 the result is not the same 🙂

Channa
Specialist III
Specialist III

you like to extract Time from date2

time(date2)

 

if you want to find difference between those 2 fields

=Interval( Date1-Date2, 'D')

 

Channa