How to put different prices for configurable child products in CSV import export? - magento-1.9

Importing the CSV with some configurable product, how I can input the different price for every simple product.

You have to use column with heading lable '_super_attribute_price_corr' to input you price for every child product. If you want to add the price simple enter the amout, if you want add the percentage than simply add percentage with percent symbol, Like (10%).

Related

Access Combo box not displaying the value I chose

Project:
Create an Access database for storing the sales of my Tuck shop.
Index:
Item(Bold) - a field name.
Item(Italic) - a value in field Item.
Goal:
I want to create a table where I chose an Item from a combo box in Item and the Unit price will automatically display(Must be a number because I need to do calculations on the price)
Problem:
If the Item has the same price as another item it changes what I have selected into the first Item with that price
What do I want to know:
How can I change the Combo box so it does not automatically change what I input to another Item?
Images:
When I for example chose stylos it turns into Pop's or switch into Choc-dip Ice cream.

how to add woocommerce custom value

I want to add a custom value to the cart total on $data->cart_totals = WC()->cart->get_totals(); , for this I have created a form field like custom_amount and want to add its value to cart total. It is properly adding to the meta value but I am not able to add it through php on order total.
There's a filter, woocommerce_cart_total, that you could hook into to change the value returned.

Creating a percentage in an expression

Would like to have some text in my report like the following where the percentage is based on an expression. I would like to know how to work out the percentage.
60% of letters were sent with a first class stamp
This is an example of the figures I'm working with
First Class 300
Second Class 150
Other 50
The fields used are 'StampType' and 'RefNo'. The totals are gathered by a count on the 'RefNo'
To do this, do the following steps.
First, add a new Text Box to the report. Click inside the text box so the cursor shows inside. Right-click and choose Create Placeholder.... Enter the following expression for the Value field.
=Lookup("First Class", Fields!StampType.Value, Fields!RefNo.Value, "ReportMain") / Sum(Fields!RefNo.Value, "ReportMain")
This assumes the dataset name that is returning your data is named ReportMain. Change this if needed.
This looks up the First Class RefNo value from the dataset, and then divides that by the total of the RefNo in the dataset.
Go to the Number section of the dialog, change the Category to Percentage. Adjust the Decimal places to your liking. Click OK.
Type the text you want to follow that value after the placeholder (not in the placeholder) in the text box. Like this:
Preview the report, and you should have what you need.

Change Shipping table rates based on custom option selection

I have added weight,qty and special price to custom option.its working fine .
but problem is that shipping rates which is applied by shipping_tablerates are not changing based
on that custom weight option , it will change based on default weight of the product.
I want to change shipping table rates based on custom option selection.Thanks in advance.

SSRS: Collect Small Slices on a Pie Chart

What i want is the behaviour described here.
Basically i want to group small slices into a larger one. My problem is that the link does this based on what percentage the slices represent in the pie; I want to do this based in values of the series.
In the image below
I want to show all BizDevs as just one bizdev. can any one point me ot the right direction?
If you want to group certain categories together, you need to group on an expression that does this and not the base field.
Say I have simplified data like:
Which gives a chart as you'd expect:
In the category group we need to update the Group on value and the Label value:
Set the expression to:
=IIf(Fields!MyGroup.Value Like "BizDev*", "BizDev", Fields!MyGroup.Value)
i.e. if the group name starts with BizDev, put these in the same group.
These will now be grouped together: