• SSRS is designed for reporting (read-only), not for data input. If you want to make a survey, a basic webpage that writes to a database using .NET or javascript is probably your best option. There are probably simple programs that will make forms like that for you too. Web based tools like surveymonkey will do that too although only in the paid version. Those tools might provide a csv output you can import into a database.

    Once the data is in a database then reporting on it is quite easy. Create a report, connect to the database, write a SQL query to retrieve the data, add a chart object to the report and modify it's formatting settings. You would need to do a fair amount of reading on reporting services to be confident but the visual studio based tools for creating reports ( or even the Report Builder application) are suprisingly easy to use. Usually the most complicated part is writing good queries.