This project is about vba programming.
Here is the project Proposal:
DSS CHOICE: Health Care/Fitness DSS for employer
Brief Explanation: This DSS will aid employers and management in health care coverage decisions, hiring decisions, as well as the tracking of the physical fitness of their employers ( particular those in fields where good physical fitness is necessary)
Potential Inputs: Body measurements (from a medical physical), height, weight, mile run time etc
Model Function: BMI, basal metabolic rate, fitness score (several models), Airforce PT score calculation. Model that assess new job applicants fitness.
Potential output: Physical Testing score, BMI level (and if considered healthy), Basic metabolic rate. Hiring recommendations.
Expected User: Military Officers or managers working in an environment where physical fitness is required, such as a security firm/contractors/post office. More over this can be used in any work environment where human assets and their health needs to be promoted.
Please make a an excel worksheet which include:
1.A gui to get persons data
Saved to excel sheetdatabase
2.Info like height weight and other things
3.calculate the bmi and bmr and other basic formulas of fitness
Based on the saved data that has been inputted via gui
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

