Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 cscherer
		
			cscherer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello,
I hope, you can help me. I have two different tables, one with amounts and one with prices. I want to create only one table of these two and want to calculate e.g. a total price for an amount.
Could you please help me and give some hints or a link, where a solution is described?
Thanks very much in advance,
Clemens
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		use this
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		What is the final price/value you are looking for Car-Sales?
and how?
 
					
				
		
 fvelascog72
		
			fvelascog72
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try this:
Billing:
load
Year,
Article,
Value,
Action,
Article&'-'&Action as "Rate"
Resident Data
;
Join
Billing:
load
Rate,
Price
Resident Prices
;
Saludos
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Or use something like this
 
					
				
		
 cscherer
		
			cscherer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I want to have a table that looks like this:
| Year | Article | Action | amount | 
| 2008 | BIKE | Repair | 1,00 € | 
| 2008 | BIKE | Sale | 3,00 € | 
| 2008 | CAR | Repair | 2,10 € | 
| 2008 | CAR | Sale | 52,50 € | 
| 2008 | TRUCK | Repair | 2,50 € | 
| 2008 | TRUCK | Sale | 4,00 € | 
| 2009 | BIKE | Repair | 1,20 € | 
| 2009 | BIKE | Sale | 10,00 € | 
| 2009 | CAR | Repair | 4,90 € | 
| 2009 | CAR | Sale | 49,00 € | 
| 2009 | TRUCK | Repair | 2,50 € | 
| 2009 | TRUCK | Sale | 21,50 € | 
| 2010 | BIKE | Repair | 1,00 € | 
| 2010 | BIKE | Sale | 13,00 € | 
| 2010 | CAR | Repair | 5,60 € | 
| 2010 | CAR | Sale | 56,00 € | 
| 2010 | TRUCK | Repair | 4,00 € | 
| 2010 | TRUCK | Sale | 12,50 € | 
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		use this
 
					
				
		
 fvelascog72
		
			fvelascog72
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try adding a transaction id and then Sum(Price) * Sum(Value)
Saludos
 
					
				
		
 cscherer
		
			cscherer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		thanks for your help. The combination of Article&'-'&Action is a good idea!
 
					
				
		
 cscherer
		
			cscherer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks for your help. I`ll try to go on with the "key".
 
					
				
		
 fvelascog72
		
			fvelascog72
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try with:
Billing:
load
RowNo() as id,
Year,
Article,
Value,
Action,
Article&'-'&Action as "Rate"
Resident Data
;
You must add id as dimension if you want to show all your transactions but you can hide it if you want.
Saludos.
