Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Input:
Student:
Load * Inline [
Empno, EName, Salary, Location
101, Ram, 50000, India
102, Mohan, 60000, USA
103, Sam, 82000, Germany
104, Abhisek , 72000, Poland
];
Output:
Ram is From India
Ram's Salary is 50000
Mohan is From USA
Mohan Salary is 60000
Sam is From Germany
Sam Salary is 82000
Abhishek is From Poland
Abhiseka Salary is 72000
@srimanta try below
Load *, EName & ' is from ' & Location & chr(10) & EName & chr(39) &'s' & ' Salary is ' & Salary as TEXT
Inline [
Empno, EName, Salary, Location
101, Ram, 50000, India
102, Mohan, 60000, USA
103, Sam, 82000, Germany
104, Abhisek , 72000, Poland
];
@srimanta try below
Load *, EName & ' is from ' & Location & chr(10) & EName & chr(39) &'s' & ' Salary is ' & Salary as TEXT
Inline [
Empno, EName, Salary, Location
101, Ram, 50000, India
102, Mohan, 60000, USA
103, Sam, 82000, Germany
104, Abhisek , 72000, Poland
];
Thank u soo much....but can you please solve this by using For Loop.
@srimanta I would not recommend to use for loop unless it is really necessary. Can you tell me why you need to use for loop?
I want to know what is the different way to solve this type of problem.....