Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can I save a detached pivot table to save so that when I open the document at a later time the chart is saved? Thanks.
Or if someone could tell me how to fix my formula so that it will only select data within a specific 27 week period; 07/05/12-01/03/2013...this would be helpful, thanks!
=count({$<Plan = {'*Life*'}-{'*Paid Up*','*Select*'}, Type= {'Primary'}>} Distinct PresentationID)
=count({$<Plan = {'*Life*'}-{'*Paid Up*','*Select*'}, Type= {'Primary'}>} DistinctPresentationID)
modified
=count({$<Plan = {'*Life*'}-{'*Paid Up*','*Select*'}, Type= {'Primary'},Date={">07/05/12 <01/03/2013"}>} DistinctPresentationID)
where Date is your date field you can change the field name.
How can I save a detached pivot table to save so that when I open the document at a later time the chart is saved?
You can create bookmark with all the selections and set macro on open loading Your bookmark and detach Your pivot
Or if someone could tell me how to fix my formula so that it will only select data within a specific 27 week period; 07/05/12-01/03/2013
Date={'>07/05/12<01/03/2013'}
=count({$<Plan = {'*Life*'}-{'*Paid Up*','*Select*'}, Type= {'Primary'}>} DistinctPresentationID)
modified
=count({$<Plan = {'*Life*'}-{'*Paid Up*','*Select*'}, Type= {'Primary'},Date={">07/05/12 <01/03/2013"}>} DistinctPresentationID)
where Date is your date field you can change the field name.
Thanks, I inserted the date formula